You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
733 B
Python
17 lines
733 B
Python
from setuptools import setup, find_packages
|
|
import os
|
|
import sys
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
args = {"name":"data-maker","version":"1.5.1",
|
|
"author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vumc.org","license":"MIT",
|
|
"packages":find_packages(),"keywords":["healthcare","data","transport","protocol"]}
|
|
args["install_requires"] = ['data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git','tensorflow']
|
|
args['url'] = 'https://hiplab.mc.vanderbilt.edu/aou/data-maker.git'
|
|
|
|
if sys.version_info[0] == 2 :
|
|
args['use_2to3'] = False
|
|
args['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import']
|
|
setup(**args)
|