Skip to content

Commit

Permalink
setup.py and LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed May 29, 2018
1 parent 552bea4 commit 803d39b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
27 changes: 27 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Copyright 2013-2017 Sathya Laufer

libhomegear-ipc is free software: you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

libhomegear-ipc is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with libhomegear-ipc. If not, see
<http://www.gnu.org/licenses/>.
In addition, as a special exception, the copyright holders give
permission to link the code of portions of this program with the
OpenSSL library under certain conditions as described in each
individual source file, and distribute linked combinations
including the two.
You must obey the GNU Lesser General Public License in all respects
for all of the code used other than OpenSSL. If you modify
file(s) with this exception, you may extend this exception to your
version of the file(s), but you are not obligated to do so. If you
do not wish to do so, delete this exception statement from your
version. If you delete this exception statement from all source
files in the program, then also delete it here.
16 changes: 15 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
from distutils.core import setup, Extension
setup(name="homegear", version="1.0", ext_modules=[Extension("homegear", ["homegear.cpp", "IpcClient.cpp", "PythonVariableConverter.cpp"], extra_compile_args=['-std=c++11'], extra_link_args=['-lhomegear-ipc'])])
setup(
name="homegear",
version="1.0",
description = 'Extension to connect to a local Homegear service.',
author="Homegear GmbH",
author_email="contact@homegear.email",
url="https://github.com/Homegear/libhomegear-python",
download_url = 'https://github.com/Homegear/libhomegear-python/archive/master.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'])
]
)

0 comments on commit 803d39b

Please sign in to comment.