forked from kk7ds/somecomfort
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 668 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
install_requires = list(val.strip() for val in open('requirements.txt'))
tests_require = list(val.strip() for val in open('test_requirements.txt'))
setup(name='somecomfort',
version='0.8.0',
description='A client for Honeywell\'s US-based cloud devices',
author='Dan Smith',
author_email='dsmith+somecomfort@danplanet.com',
url='https://github.com/kk7ds/somecomfort',
packages=['somecomfort'],
entry_points={
'console_scripts': [
'somecomfort = somecomfort.__main__:main'
]
},
install_requires=install_requires,
tests_require=tests_require,
)