diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2017-12-28 22:35:33 +0100 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2017-12-28 22:35:33 +0100 |
commit | b8aa129750be9a6a56f14987401010edc8514b32 (patch) | |
tree | 4bc552a7e9da6d00c29f6f35923431f00e328f03 | |
parent | Rewrite setup.py to use setuptools. (diff) | |
download | glucometerutils-b8aa129750be9a6a56f14987401010edc8514b32.tar glucometerutils-b8aa129750be9a6a56f14987401010edc8514b32.tar.gz glucometerutils-b8aa129750be9a6a56f14987401010edc8514b32.tar.bz2 glucometerutils-b8aa129750be9a6a56f14987401010edc8514b32.tar.lz glucometerutils-b8aa129750be9a6a56f14987401010edc8514b32.tar.xz glucometerutils-b8aa129750be9a6a56f14987401010edc8514b32.tar.zst glucometerutils-b8aa129750be9a6a56f14987401010edc8514b32.zip |
-rw-r--r-- | README | 14 | ||||
-rw-r--r-- | setup.py | 11 |
2 files changed, 25 insertions, 0 deletions
@@ -13,6 +13,20 @@ follows: * `datetime` reads or updates the date and time of the device clock. * `zero` deletes all the recorded readings (only implemented for few devices). +## Example Usage + +Most of the drivers require optional dependencies, and those are listed in the +table below. If you do not want to install the dependencies manually, you should +be able to set this up using `virtualenv` and `pip`: + +```shell +$ python3 -m venv $(pwd)/glucometerutils-venv +$ . glucometerutils-venv/bin/activate +(glucometerutils-venv) $ DRIVER=myglucometer-driver # see table below +(glucometerutils-venv) $ pip install git+https://github.com/Flameeyes/glucometerutils.git#egg=project[${DRIVER}] +(glucometerutils-venv) $ glucometer --driver ${DRIVER} help +``` + ## Supported devices Please see the following table for the driver for each device that is known and @@ -29,6 +29,17 @@ setup( ], extras_require = { 'test': ['abseil-py'], + # These are all the drivers' dependencies. Optional dependencies are + # listed as mandatory for the feature. + 'otultra2': ['pyserial'], + 'otultraeasy': ['pyserial'], + 'otverio2015': ['python-scsi'], + 'fsinsulinx': ['hidapi'], + 'fslibre': ['hidapi'], + 'fsoptium': ['hidapi'], + 'fsprecisionneo': ['hidapi'], + 'accucheck_reports': [], + 'sdcodefree': ['pyserial'], }, entry_points = { 'console_scripts': [ |