File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change
1
+ import io
1
2
import setuptools
2
3
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 :
6
5
long_description = fh .read ()
7
6
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
-
13
7
setuptools .setup (
14
8
name = "penn_chime" ,
15
9
version = "1.0.0" ,
25
19
},
26
20
package_dir = {'' : 'src' },
27
21
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
+ ],
29
28
classifiers = [
30
29
"Programming Language :: Python :: 3" ,
31
30
"License :: OSI Approved :: MIT License" ,
You can’t perform that action at this time.
0 commit comments