File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
CWD = path .abspath (path .dirname (__file__ ))
11
11
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 :
13
19
LONG_DESCRIPTION = inp .read ()
14
20
15
- with io .open (path . join ( CWD , "requirements.txt" ), encoding = "utf-8 " ) as inp :
21
+ with io .open ("requirements.txt" , "r " ) as inp :
16
22
REQUIREMENTS = [el .strip () for el in inp .read ().split ("," )]
17
23
24
+
18
25
setup (
19
26
name = "penn_chime" ,
20
27
version = __version__ ,
You can’t perform that action at this time.
0 commit comments