Skip to content

Commit 47d40f2

Browse files
Update setup.py
1 parent ed07e38 commit 47d40f2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,19 @@
99

1010
CWD = path.abspath(path.dirname(__file__))
1111

12-
with io.open(path.join(CWD, "README.md"), encoding="utf-8") as inp:
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+
18+
with io.open("README.md", "r") as inp:
1319
LONG_DESCRIPTION = inp.read()
1420

15-
with io.open(path.join(CWD, "requirements.txt"), encoding="utf-8") as inp:
21+
with io.open("requirements.txt", "r") as inp:
1622
REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
1723

24+
1825
setup(
1926
name="penn_chime",
2027
version=__version__,

0 commit comments

Comments
 (0)