Skip to content

Commit

Permalink
576-Heroku-deployment-hotfix
Browse files Browse the repository at this point in the history
[DevOps] Allow downgraded setuptools for heroku
  • Loading branch information
BrianThomasRoss authored Apr 29, 2020
2 parents 2c0d471 + 599b780 commit 1ca539e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__version__ = "1.1.4" # update VERSION in constants.py
__author__ = "Predictive Healthcare @ Penn Medicine"

from setuptools import setup, find_namespace_packages
from setuptools import setup, find_packages


setup(
Expand All @@ -19,7 +19,7 @@
"Documentation": "https://codeforphilly.github.io/chime/",
},
package_dir={'': 'src'},
packages=find_namespace_packages(where='src', exclude=('tests')),
packages=find_packages(where='src', exclude=('tests')),
install_requires=[
"altair",
"black",
Expand Down

0 comments on commit 1ca539e

Please sign in to comment.