forked from smarthomeNG/smarthome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.27 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
45
46
47
48
49
50
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
DOWNLOAD_URL = ('https://github.com/smarthomeNG/smarthome/archive/v{}.zip'.format("1.6"))
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
#REQUIRES = [
# 'requests>=2,<3',
# 'pyyaml>=3.11,<4',
# 'psutil',
#
#]
REQUIRES = [
]
setup(
name='SmartHomeNG',
version="1.6b",
license='GPL',
url='https://github.com/smarthomeNG/smarthome',
download_url=DOWNLOAD_URL,
author='',
author_email='',
description='Open-source home automation platform running on Python 3.',
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=REQUIRES,
test_suite='tests',
keywords=['home', 'automation'],
entry_points={
'console_scripts': [
''
]
},
classifiers=[
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Home Automation'
],
)