diff --git a/pipeline.py b/pipeline.py index 134ca8c..04658da 100644 --- a/pipeline.py +++ b/pipeline.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import json from transport import factory import numpy as np diff --git a/setup.py b/setup.py index 477c48a..e6b988a 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -args = {"name":"data-maker","version":"1.1.4","author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vanderbilt.edu","license":"MIT", +args = {"name":"data-maker","version":"1.1.6","author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vanderbilt.edu","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==1.15','pandas','pandas-gbq','pymongo'] args['url'] = 'https://hiplab.mc.vanderbilt.edu/git/aou/data-maker.git' @@ -12,4 +12,5 @@ args['url'] = 'https://hiplab.mc.vanderbilt.edu/git/aou/data-maker.git' if sys.version_info[0] == 2 : args['use_2to3'] = False args['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import'] +args['scripts']=['pipeline.py'] setup(**args)