-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.01 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
from setuptools import setup, find_packages
def readme():
with open('README.org') as f:
return f.read()
setup(name='Machine Cycles',
version='0.5',
description='Log machine cycle time',
long_description='Log machine cycle time to mongodb',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Topic :: Communications',
],
keywords='arduino',
url='http://github.com/kcjuntunen/cycles',
author='K. C. Juntunen',
author_email='[email protected]',
license='GPLv2',
packages=['cycles'],
install_requires=[
'pymongo',
'pymysql',
'pyserial',
'evdev',
'urllib3',
],
include_package_data=True,
zip_safe=False,
scripts=['bin/monitormachines.py',
'bin/update_monitor.sh', ],
test_suite='nose.collector',
tests_require=['nose'],
)