summaryrefslogtreecommitdiff
path: root/setup.py
blob: d77a75fdfb989c503bc60bdd22d8f7975699ff2e (plain)
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
58
59
60
61
62
63
#!/usr/bin/python

from setuptools import setup, find_packages
import platform
import subprocess
import sys

def is_virtualenv ( ):
  import os, os.path
  proc = subprocess.Popen(['which', 'add2virtualenv'], stderr=subprocess.PIPE, stdout=subprocess.PIPE)
  shell = os.path.dirname(sys.argv[0])
  proc.communicate( )
  has_venv = proc.poll( ) == 0
  print "RESULT", proc.poll( ), has_venv, os.environ.get('VIRTUAL_ENV')
  return os.environ.get('VIRTUAL_ENV', has_venv)

import dexcom_reader
def readme():
    with open("README.md") as f:
        return f.read()

dataFiles = [ ]
if platform.system( ) == 'Linux':
  # prefix = '/'
  prefix = ''
  dataFiles = [
      (prefix + 'etc/udev/rules.d', ['etc/udev/rules.d/80-dexcom.rules']),
    ]
  if is_virtualenv( ):
    prefix = ''
    dataFiles = [ ]
    print "should not Use", dataFiles

setup(name='dexcom_reader',
    version='0.0.6', # http://semver.org/
    description='Audit, and inspect data from Dexcom G4.',
    long_description=readme(),
    author="Will Nowak",
    # I'm just maintaining the package, @compbrain authored it.
    # I don't have their email.
    author_email="compbrain+dexcom_reader@gmail.com",
    maintainer="Ben West",
    maintainer_email="bewest+dexcom_reader@gmail.com",
    url="https://github.com/compbrain/dexcom_reader",
    packages=find_packages( ),
    install_requires = [
      'pyserial'
    ],
    classifiers = [
        'Development Status :: 3 - Alpha',
        'Intended Audience :: Developers',
        'Intended Audience :: Science/Research',
        'Programming Language :: Python',
        'Topic :: Scientific/Engineering',
        'Topic :: Software Development :: Libraries'
    ],
    data_files=dataFiles,
    zip_safe=False,
    include_package_data=True
)

#####
# EOF