Created
January 29, 2017 16:43
-
-
Save finbarrocallaghan/990bab16b68c0f916f16411d6b7f422e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| from setuptools import setup | |
| setup( | |
| name = 'glucometerutils', | |
| packages = ['glucometerutils', 'glucometerutils.drivers', 'glucometerutils.support'], | |
| scripts = ['glucometer.py'], | |
| version = '1', | |
| description = 'Glucometer access utilities', | |
| author = 'Diego Elio Pettenò', | |
| author_email = 'flameeyes@flameeyes.eu', | |
| url = 'https://www.flameeyes.eu/projects/glucometerutils', | |
| download_url = 'https://www.flameeyes.eu/files/glucometerutils.tgz', | |
| keywords = ['glucometer', 'diabetes'], | |
| classifiers = [ | |
| 'Programming Language :: Python', | |
| 'Programming Language :: Python :: 3', | |
| 'Development Status :: 4 - Beta', | |
| 'Environment :: Console', | |
| 'Operating System :: OS Independent', | |
| 'License :: OSI Approved :: MIT License', | |
| 'Intended Audience :: End Users/Desktop', | |
| 'Topic :: Scientific/Engineering :: Medical Science Apps.', | |
| ], | |
| install_requires = [ | |
| 'dateutils', | |
| 'pyserial', | |
| 'pyscsi' | |
| ], | |
| dependency_links = ['https://github.com/rosjat/python-scsi/archive/master.zip#egg=python-scsi-1.0'] | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment