Skip to content

Commit

Permalink
Small package fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed May 30, 2018
1 parent 0262890 commit 0beb78f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include IpcClient.h
include PythonVariableConverter.h
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@

setuptools.setup(
name="homegear",
version="1.0.4",
version="1.0.5",
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.4.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"]},
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX"
)
"Programming Language :: C++",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: POSIX"
)
)

0 comments on commit 0beb78f

Please sign in to comment.