-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
57 lines (52 loc) · 1.54 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
51
52
53
54
55
56
57
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK
from setuptools import setup, find_packages
import platform
import decocare
def readme():
with open("README.markdown") as f:
return f.read()
setup(name='decocare',
version='0.0.30-dev', # http://semver.org/
description='Audit, inspect, and command MM insulin pumps.',
long_description=readme(),
author="Ben West",
author_email="[email protected]",
url="https://github.com/bewest/decoding-carelink",
#namespace_packages = ['insulaudit'],
packages=find_packages( ),
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-decode-history-page.py',
'bin/mm-latest.py',
'bin/mm-bolus.py',
'bin/mm-set-rtc.py',
'bin/mm-pretty-csv',
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries'
],
include_package_data=True,
package_data = {
'decocare': ['etc/*', '*.rules' ],
# 'decocare.etc': ['*.rules' ],
},
data_files = [
# commenting out for readthedocs and virtualenv users.
# ('/etc/udev/rules.d', ['decocare/etc/80-medtronic-carelink.rules'] )
],
zip_safe=False
)
#####
# EOF