setup.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. """
  2. This is a build file for the
  3. """
  4. from setuptools import setup, find_packages
  5. import os
  6. import sys
  7. def read(fname):
  8. return open(os.path.join(os.path.dirname(__file__), fname)).read()
  9. args = {
  10. "name":"healthcareio","version":"1.2.2",
  11. "author":"Vanderbilt University Medical Center",
  12. "author_email":"steve.l.nyemba@vumc.org",
  13. "license":"MIT",
  14. "packages":find_packages("."),
  15. "keywords":["healthcare","edi","x12","analytics","835","837","data","transport","protocol"]
  16. }
  17. args["install_requires"] = ['seaborn','jinja2', 'weasyprint','data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git','pymongo','numpy','cloudant','pika','boto','flask-session','smart_open']
  18. args['url'] = 'https://hiplab.mc.vanderbilt.edu'
  19. args['scripts']= ['healthcareio/healthcareio.py']
  20. if sys.version_info[0] == 2 :
  21. args['use_2to3'] = False
  22. args['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import']
  23. setup(**args)
  24. #setup(
  25. # name = "parse-edi",
  26. # version = "1.0",
  27. # author = "Vanderbilt University Medical Center",
  28. # author_email = "steve.l.nyemba@vanderbilt.edu",
  29. # license = "MIT",
  30. # packages=['edi'],
  31. # keywords=['healthcare', 'edi','x12','mongodb','couchdb','rabbitmq','file','read','write','s3'],
  32. # install_requires = [
  33. # 'data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git',
  34. # 'pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'],
  35. # url="https://hiplab.mc.vanderbilt.edu/tools",
  36. # use_2to3=True,
  37. # long_description=read('README.md'),
  38. # convert_2to3_doctests=['README.md'],
  39. # #use_2to3_fixers=['your.fixers'],
  40. # use_2to3_exclude_fixers=['lib2to3.fixes.fix_import'],
  41. # )