parser/setup.py

50 lines
2.0 KiB
Python
Raw Normal View History

2019-11-06 20:37:51 +00:00
"""
This is a build file for the
"""
from setuptools import setup, find_packages
2023-12-07 19:00:16 +00:00
from healthcareio import version
2019-11-06 20:37:51 +00:00
import os
2019-11-07 07:07:15 +00:00
import sys
2019-11-06 20:37:51 +00:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = {
2023-12-07 19:00:16 +00:00
"name":"healthcareio","version":version.__version__,
"author":version.__author__,
"author_email":"steve.l.nyemba@vumc.org",
"include_package_data":True,
2023-12-07 19:00:16 +00:00
"license":version.__license__,
2020-08-21 14:28:24 +00:00
"packages":find_packages(),
"keywords":["healthcare","edi","x12","analytics","835","837","data","transport","protocol"]
}
2023-12-07 19:00:16 +00:00
args["install_requires"] = ['typer','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']
2019-11-07 07:07:15 +00:00
args['url'] = 'https://hiplab.mc.vanderbilt.edu'
2020-09-16 16:13:48 +00:00
args['scripts']= ['healthcareio/healthcare-io.py']
# args['entry_points'] = {
# 'console_scripts' : ['healthcareio=healthcareio:register']
# }
2019-11-07 07:07:15 +00:00
if sys.version_info[0] == 2 :
args['use_2to3'] = False
args['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import']
setup(**args)
#setup(
# name = "parse-edi",
# version = "1.0",
# author = "Vanderbilt University Medical Center",
# author_email = "steve.l.nyemba@vanderbilt.edu",
# license = "MIT",
# packages=['edi'],
# keywords=['healthcare', 'edi','x12','mongodb','couchdb','rabbitmq','file','read','write','s3'],
# install_requires = [
# 'data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git',
# 'pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'],
# url="https://hiplab.mc.vanderbilt.edu/tools",
# use_2to3=True,
# long_description=read('README.md'),
# convert_2to3_doctests=['README.md'],
# #use_2to3_fixers=['your.fixers'],
# use_2to3_exclude_fixers=['lib2to3.fixes.fix_import'],
# )
2019-11-07 07:13:02 +00:00