Skip to content

Commit 8f69fa7

Browse files
author
Nick Canzoneri
committed
Fix setup.py from merge
1 parent cb03218 commit 8f69fa7

File tree

2 files changed

+1
-24
lines changed

2 files changed

+1
-24
lines changed

requirements.txt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
11
-e .
2-
streamlit
3-
pandas
4-
numpy
5-
pytest
6-
altair
7-
dash
8-
dash_bootstrap_components
9-
pyyaml
10-
gunicorn

setup.py

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,8 @@
77
from os import path
88
from setuptools import setup, find_packages, find_namespace_packages
99

10-
CWD = path.abspath(path.dirname(__file__))
11-
12-
#with io.open(path.join(CWD, "README.md"), encoding="utf-8") as inp:
13-
# LONG_DESCRIPTION = inp.read()
14-
15-
#with io.open(path.join(CWD, "requirements.txt"), encoding="utf-8") as inp:
16-
# REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
17-
1810
with io.open("README.md", "r") as inp:
1911
LONG_DESCRIPTION = inp.read()
20-
21-
with io.open("requirements.txt", "r") as inp:
22-
REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
23-
2412

2513
setup(
2614
name="penn_chime",
@@ -37,7 +25,7 @@
3725
"Documentation": "https://codeforphilly.github.io/chime/",
3826
},
3927
package_dir={'': 'src'},
40-
#packages=find_namespace_packages(where='src', exclude=('tests')),
28+
packages=find_namespace_packages(where='src', exclude=('tests')),
4129
install_requires=[
4230
"streamlit",
4331
"pandas",
@@ -59,7 +47,5 @@
5947
'console_scripts': ['penn_chime=penn_chime.cli:main'],
6048
},
6149
keywords=[],
62-
packages=find_packages(".", exclude=["docs", "k82", "script", "tests"]),
63-
#install_requires=REQUIREMENTS,
6450
include_package_data=True,
6551
)

0 commit comments

Comments
 (0)