setup.py 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.3.7",
  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/healthcare-io.py']
  20. # args['entry_points'] = {
  21. # 'console_scripts' : ['healthcareio=healthcareio:register']
  22. # }
  23. if sys.version_info[0] == 2 :
  24. args['use_2to3'] = False
  25. args['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import']
  26. setup(**args)
  27. #setup(
  28. # name = "parse-edi",
  29. # version = "1.0",
  30. # author = "Vanderbilt University Medical Center",
  31. # author_email = "steve.l.nyemba@vanderbilt.edu",
  32. # license = "MIT",
  33. # packages=['edi'],
  34. # keywords=['healthcare', 'edi','x12','mongodb','couchdb','rabbitmq','file','read','write','s3'],
  35. # install_requires = [
  36. # 'data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git',
  37. # 'pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'],
  38. # url="https://hiplab.mc.vanderbilt.edu/tools",
  39. # use_2to3=True,
  40. # long_description=read('README.md'),
  41. # convert_2to3_doctests=['README.md'],
  42. # #use_2to3_fixers=['your.fixers'],
  43. # use_2to3_exclude_fixers=['lib2to3.fixes.fix_import'],
  44. # )