-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 1.02 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
#!/usr/bin/env python
from distutils.core import setup
import setuptools
setup(name='slightstalkie',
version='0.1.0',
description="Contains libraries to communicate with both the web application api and the arduino serial listener. "
"This allows for sending and retrieving messages from both interfaces. Will.py uses these libraries to"
" inform the arduino serial interface what messages is next in the queue",
author='Douglas Rohde',
author_email='[email protected]',
packages=['slightstalkie'],
keywords='strangerlights',
url='https://github.com/dfresh613/strangerLights',
license="MIT",
install_requires=[
'requests',
'pyserial'
],
scripts=['bin/slightstalkie', 'bin/strangerapi'],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Other/Nonlisted Topic',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
]
)