-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
60 lines (57 loc) · 2.04 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
# Copyright (C) Ivan Kravets <[email protected]>
# See LICENSE for details.
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=[
"platformio",
"pyserial",
"twisted"
],
packages=find_packages()+["twisted.plugins"],
package_data={"smartanthill": ["*.json"]},
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 :: MIT License",
"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"
]
)