2019-12-12 17:43:08 +00:00
from setuptools import setup , find_packages
import os
import sys
def read ( fname ) :
return open ( os . path . join ( os . path . dirname ( __file__ ) , fname ) ) . read ( )
2020-04-01 05:21:51 +00:00
args = { " name " : " data-maker " , " version " : " 1.2.6 " , " author " : " Vanderbilt University Medical Center " , " author_email " : " steve.l.nyemba@vanderbilt.edu " , " license " : " MIT " ,
2020-01-05 05:02:15 +00:00
" packages " : find_packages ( ) , " keywords " : [ " healthcare " , " data " , " transport " , " protocol " ] }
2020-01-09 17:32:31 +00:00
args [ " install_requires " ] = [ ' data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git ' , ' tensorflow==1.15 ' , ' pandas ' , ' pandas-gbq ' , ' pymongo ' ]
2020-02-18 18:25:47 +00:00
args [ ' url ' ] = ' https://hiplab.mc.vanderbilt.edu/git/aou/data-maker.git '
2020-01-05 05:02:15 +00:00
2019-12-12 17:43:08 +00:00
if sys . version_info [ 0 ] == 2 :
args [ ' use_2to3 ' ] = False
args [ ' use_2to3_exclude_fixers ' ] = [ ' lib2to3.fixes.fix_import ' ]
2020-03-04 18:16:50 +00:00
args [ ' scripts ' ] = [ ' pipeline.py ' ]
2019-12-12 17:43:08 +00:00
setup ( * * args )