We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45aeb49 commit f63838cCopy full SHA for f63838c
setup.py
@@ -3,7 +3,7 @@
3
__version__ = "1.1.4" # update VERSION in constants.py
4
__author__ = "Predictive Healthcare @ Penn Medicine"
5
6
-from setuptools import setup, find_namespace_packages
+from setuptools import setup, find_packages
7
8
9
setup(
@@ -19,7 +19,7 @@
19
"Documentation": "https://codeforphilly.github.io/chime/",
20
},
21
package_dir={'': 'src'},
22
- packages=find_namespace_packages(where='src', exclude=('tests')),
+ packages=find_packages(where='src', exclude=('tests')),
23
install_requires=[
24
"altair",
25
"black",
0 commit comments