This repository was archived by the owner on May 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (47 loc) · 1.73 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
"""
.. module:: setup
:platform: posix
:synopsis: Build the mauzr package.
.. moduleauthor:: Alexander Sowitzki <dev@eqrx.net>
"""
import setuptools
setuptools.setup(
version=0,
author="Alexander Sowitzki",
author_email="dev@eqrx.net",
url="http://mauzr.eqrx.net",
name="mauzr",
keywords="agent cps distributed framework hardware iot mqtt smart",
description="Framework for developing cyber-physical systems and"
" IoT devices",
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'License :: OSI Approved :: '
'GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: MicroPython',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Home Automation',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Hardware :: Hardware Drivers'
],
tests_require=['pytest', 'pylint', 'pytest-pylint'],
extras_require={
"build": ["sphinx", "pytest-runner"],
"gui": ["pygame"],
"images": ["numpy"]
},
entry_points={
"console_scripts": ['mauzr=mauzr.shell:main',
'mauzr-cfg=mauzr.configurator:main']
}
)