Skip to content

Commit 1fcad7d

Browse files
author
Nick Canzoneri
committed
Add changes from codereview
1 parent 5ba97db commit 1fcad7d

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

setup.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1+
import io
12
import setuptools
23

3-
from os import path
4-
5-
with open("README.md", "r") as fh:
4+
with io.open("README.md", encoding="utf-8") as fh:
65
long_description = fh.read()
76

8-
CWD = path.abspath(path.dirname(__file__))
9-
10-
with open(path.join(CWD, "requirements.txt"), encoding="utf-8") as inp:
11-
REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
12-
137
setuptools.setup(
148
name="penn_chime",
159
version="1.0.0",
@@ -25,7 +19,12 @@
2519
},
2620
package_dir={'': 'src'},
2721
packages=setuptools.find_namespace_packages(where='src', exclude=('tests')),
28-
install_requires=REQUIREMENTS,
22+
install_requires=[
23+
"streamlit",
24+
"pandas",
25+
"numpy",
26+
"altair"
27+
],
2928
classifiers=[
3029
"Programming Language :: Python :: 3",
3130
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)