forked from sim0nx/python-openhab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
__version__ = (2, 9)
__versionstr__ = '.'.join(map(str, __version__))
f = open(join(dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
install_requires = [
'requests>=2.4.3',
'python-dateutil>=2.2',
'typing'
]
setup(
name='python-openhab',
description="python library for accessing the openHAB REST API",
license="AGPLv3+",
url="https://github.com/sim0nx/python-openhab",
download_url="https://github.com/sim0nx/python-openhab",
long_description=long_description,
version=__versionstr__,
author="Georges Toth",
author_email="[email protected]",
packages=find_packages(
where='.',
),
keywords=['openhab'],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=install_requires,
)