forked from bewest/decoding-carelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.08 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
#!/usr/bin/python
from setuptools import setup, find_packages
import decocare
def readme():
with open("README.markdown") as f:
return f.read()
setup(name='decocare',
version='0.0.7', # http://semver.org/
description='Audit, inspect, and command MM insulin pumps.',
long_description=readme(),
author="Ben West",
author_email="bewest+insulaudit@gmail.com",
url="https://github.com/bewest/decoding-carelink",
#namespace_packages = ['insulaudit'],
packages=['decocare'],
install_requires = [
'pyserial', 'python-dateutil', 'argcomplete'
],
scripts = [
'bin/mm-press-key.py',
'bin/mm-send-comm.py',
'bin/mm-set-suspend.py',
'bin/mm-temp-basals.py',
'./bin/mm-latest.py',
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries'
],
zip_safe=False,
)
#####
# EOF