forked from bewest/mmblelink
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
37 lines (36 loc) · 1.09 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='mmeowlink',
version='0.11.2-dev',
description='Driver layer for communicating with Medtronic pumps over a variety of radios',
packages=find_packages(),
include_package_data=True,
author='Oskar Pearson',
author_email='[email protected]',
license='GPL',
url='https://github.com/oskarpearson/mmeowlink',
install_requires=[
'argcomplete',
'decocare',
'python-dateutil',
'pyserial'
],
scripts = [
'bin/mmeowlink-bolus.py',
'bin/mmeowlink-any-pump-comms.py',
'bin/mmeowlink-rf-dump.py',
'bin/mmeowlink-send.py',
'bin/mmtune.py'
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
],
zip_safe=False
)