-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
75 lines (72 loc) · 2.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright (C) 2015 OLogN Technologies AG
#
# This source file is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from setuptools import find_packages, setup
from smartanthill import (__author__, __description__, __email__, __license__,
__title__, __url__, __version__)
setup(
name=__title__,
version=__version__,
description=__description__,
long_description=open("README.rst").read(),
author=__author__,
author_email=__email__,
url=__url__,
license=__license__,
install_requires=[
# "smartanthill_zc",
"platformio>=2.3.1",
"pyserial<3",
"twisted>=14.1",
"txws",
"six", # required by txws but not listed in it's requirements
],
packages=find_packages() + ["twisted.plugins"],
include_package_data=True,
entry_points={
"console_scripts": [
"smartanthill = smartanthill.__main__:main"
]
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Twisted",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Topic :: Adaptive Technologies",
"Topic :: Communications",
"Topic :: Home Automation",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol"
"Translator",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking",
"Topic :: Terminals :: Serial"
]
)