bug fix: package/imports
This commit is contained in:
parent
39a484ee4a
commit
97a58b416a
7
setup.py
7
setup.py
|
@ -2,15 +2,16 @@
|
||||||
This is a build file for the
|
This is a build file for the
|
||||||
"""
|
"""
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from healthcareio import version
|
#from healthcareio import version
|
||||||
|
import meta
|
||||||
import os
|
import os
|
||||||
import sys
|
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":version.__version__,
|
"name":"healthcareio","version":meta.__version__,
|
||||||
"author":version.__author__,
|
"author":meta.__author__,
|
||||||
"author_email":"steve.l.nyemba@vumc.org",
|
"author_email":"steve.l.nyemba@vumc.org",
|
||||||
"include_package_data":True,
|
"include_package_data":True,
|
||||||
"license":version.__license__,
|
"license":version.__license__,
|
||||||
|
|
Loading…
Reference in New Issue