-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 951 Bytes
/
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
from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read()
reqs = [x.strip() for x in open('requirements.txt').readlines()]
test_reqs = [x.strip() for x in open('requirements-tests.txt').readlines()]
setup(
name='pyhomesensors',
version='0.0.1',
author='Andrey Cizov',
author_email='[email protected]',
packages=find_packages(include=('pyhomesensors', 'pyhomesensors.*',)),
description='',
keywords='',
url='https://github.com/andreycizov/pyhomesensors',
include_package_data=True,
long_description=readme,
install_requires=reqs,
test_suite='tests',
tests_require=test_reqs,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
]
)