Skip to content

Commit

Permalink
Version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed May 29, 2018
1 parent 7ac64a7 commit 5163e2a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,5 @@ cmake-build-debug

#Python setup
build/
homegear.egg-info
dist/
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

23 changes: 18 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
from distutils.core import setup, Extension
setup(
import setuptools
from distutils.core import Extension

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="homegear",
version="1.0",
version="1.0.2",
description = 'Extension to connect to a local Homegear service.',
long_description=long_description,
long_description_content_type="text/markdown",
author="Homegear GmbH",
author_email="[email protected]",
url="https://github.com/Homegear/libhomegear-python",
download_url = 'https://github.com/Homegear/libhomegear-python/archive/1.0.tar.gz',
download_url = 'https://github.com/Homegear/libhomegear-python/archive/1.0.2.tar.gz',
keywords = ['homegear', 'smart home'],
ext_modules=[
Extension("homegear", ["homegear.cpp", "IpcClient.cpp", "PythonVariableConverter.cpp"],
extra_compile_args=['-std=c++11'],
extra_link_args=['-lhomegear-ipc'])
]
],
package_data={'': ['IpcClient.h', "PythonVariableConverter.h"]},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX"
)
)

0 comments on commit 5163e2a

Please sign in to comment.