-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.21 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
from setuptools import setup
setup(
name='moebot',
packages=['moebot'],
package_dir={'moebot': 'moebot'},
package_data={'moebot': 'data/*'},
version='1.2.0',
description='Bartender Robot',
long_description="""Bartender Robot
""",
license="MIT",
author='Dylan Whichard',
author_email='[email protected]',
url='https://github.com/umbc-hackafe/moebot',
keywords=[
'home automation', 'iot', 'internet of things'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Home Automation',
],
install_requires=[
'requests',
'pint',
'setuptools',
'dmx485',
'gpiozero',
'RPi.GPIO',
'pyyaml',
'flask',
'jinja2',
],
data_files=[],
entry_points={
'console_scripts': [
'moebot=moebot.__main__:main',
]
},
)