bug fix with imports
This commit is contained in:
parent
61abc0ebea
commit
59ea738f0f
|
@ -16,4 +16,5 @@ Usage :
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from healthcareio import analytics
|
from healthcareio import analytics
|
||||||
|
import healthcareio.x12 as x12
|
||||||
# from healthcareio import server
|
# from healthcareio import server
|
||||||
|
|
|
@ -42,7 +42,7 @@ import sys
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from multiprocessing import Process
|
from multiprocessing import Process
|
||||||
import time
|
import time
|
||||||
import x12
|
from healthcareio import x12
|
||||||
|
|
||||||
PATH = os.sep.join([os.environ['HOME'],'.healthcareio'])
|
PATH = os.sep.join([os.environ['HOME'],'.healthcareio'])
|
||||||
OUTPUT_FOLDER = os.sep.join([os.environ['HOME'],'healthcare-io'])
|
OUTPUT_FOLDER = os.sep.join([os.environ['HOME'],'healthcare-io'])
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -8,7 +8,7 @@ import sys
|
||||||
def read(fname):
|
def read(fname):
|
||||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
args = {
|
args = {
|
||||||
"name":"healthcareio","version":"1.3.2",
|
"name":"healthcareio","version":"1.3.3",
|
||||||
"author":"Vanderbilt University Medical Center",
|
"author":"Vanderbilt University Medical Center",
|
||||||
"author_email":"steve.l.nyemba@vumc.org",
|
"author_email":"steve.l.nyemba@vumc.org",
|
||||||
"license":"MIT",
|
"license":"MIT",
|
||||||
|
|
Loading…
Reference in New Issue