-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (39 loc) · 1.32 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
43
44
import setuptools
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = [line.strip() for line in fh]
setuptools.setup(
name='openhab_creator',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='openHAB Creator',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DerOetzi/openhab_creator',
author='Johannes Ott',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Home Automation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
keywords='smart home, openhab',
package_dir={'openhab_creator': 'openhab_creator'},
packages=['openhab_creator'],
python_requires='>=3.7, <4',
install_requires = requirements,
entry_points={
'console_scripts': [
'openhab_creator=openhab_creator.cli:cli'
]
},
project_urls={
'Bug Reports': 'https://github.com/DerOetzi/openhab_creator/issues'
}
)