setup.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.6.4.3",
  11. "author":"Vanderbilt University Medical Center",
  12. "author_email":"steve.l.nyemba@vumc.org",
  13. "include_package_data":True,
  14. "license":"MIT",
  15. "packages":find_packages(),
  16. "keywords":["healthcare","edi","x12","analytics","835","837","data","transport","protocol"]
  17. }
  18. args["install_requires"] = ['flask-socketio','seaborn','jinja2','jsonmerge', 'weasyprint','data-transport@git+https://healthcareio.the-phi.com/git/code/transport.git','pymongo','numpy','cloudant','pika','boto','botocore','flask-session','smart_open','smart-top@git+https://healthcareio.the-phi.com/git/code/smart-top.git@data-collector']
  19. args['url'] = 'https://hiplab.mc.vanderbilt.edu'
  20. args['scripts']= ['healthcareio/healthcare-io.py']
  21. # args['entry_points'] = {
  22. # 'console_scripts' : ['healthcareio=healthcareio:register']
  23. # }
  24. if sys.version_info[0] == 2 :
  25. args['use_2to3'] = False
  26. args['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import']
  27. setup(**args)
  28. #setup(
  29. # name = "parse-edi",
  30. # version = "1.0",
  31. # author = "Vanderbilt University Medical Center",
  32. # author_email = "steve.l.nyemba@vanderbilt.edu",
  33. # license = "MIT",
  34. # packages=['edi'],
  35. # keywords=['healthcare', 'edi','x12','mongodb','couchdb','rabbitmq','file','read','write','s3'],
  36. # install_requires = [
  37. # 'data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git',
  38. # 'pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'],
  39. # url="https://hiplab.mc.vanderbilt.edu/tools",
  40. # use_2to3=True,
  41. # long_description=read('README.md'),
  42. # convert_2to3_doctests=['README.md'],
  43. # #use_2to3_fixers=['your.fixers'],
  44. # use_2to3_exclude_fixers=['lib2to3.fixes.fix_import'],
  45. # )