structuring the repository

This commit is contained in:
Steve Nyemba 2019-12-12 11:43:08 -06:00
parent e4b2f94397
commit bba3b94a30
3 changed files with 14 additions and 1 deletions

View File

@ -5,4 +5,4 @@ RUN ["apt-get","install","-y","git", "python3-dev","tmux","locales","python3-pip
RUN ["pip3","install","pandas-gbq","tensorflow"] RUN ["pip3","install","pandas-gbq","tensorflow"]
RUN ["mkdir","-p","/usr/apps"] RUN ["mkdir","-p","/usr/apps"]
WORKDIR /usr/apps WORKDIR /usr/apps
RUN ["git","clone","https://hiplab.mc.vanderbilt.edu/git/gan.git","aou-gan"] RUN ["git","clone","https://hiplab.mc.vanderbilt.edu/git/aou/gan.git@release","aou-gan"]

13
setup.py Normal file
View File

@ -0,0 +1,13 @@
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.0.0","author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vanderbilt.edu","license":"MIT","packages":["edi"],"keywords":["healthcare","edi","x12","data","transport","protocol"]}
args["install_requires"] = ['data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git','numpy','pandas','pandas-gbq','pymongo']
args['url'] = 'https://hiplab.mc.vanderbilt.edu/aou/gan.git'
if sys.version_info[0] == 2 :
args['use_2to3'] = False
args['use_2to3_exclude_fixers'] = ['lib2to3.fixes.fix_import']
setup(**args)