Skip to content

Commit dad6768

Browse files
author
Nick Canzoneri
committed
Add more setup.py info
1 parent cb3338e commit dad6768

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6+
with open(path.join(CWD, "requirements.txt"), encoding="utf-8") as inp:
7+
REQUIREMENTS = [el.strip() for el in inp.read().split(",")]
8+
69
setuptools.setup(
710
name="penn_chime",
811
version="1.0.0",
@@ -11,9 +14,14 @@
1114
long_description=long_description,
1215
long_description_content_type="text/markdown",
1316
url="https://github.com/CodeForPhilly/chime",
17+
project_urls={
18+
"Bug Reports": "https://github.com/CodeForPhilly/chime/issues",
19+
"Source": "https://github.com/CodeForPhilly/chime",
20+
"Documentation": "https://codeforphilly.github.io/chime/",
21+
},
1422
package_dir={'': 'src'},
1523
packages=setuptools.find_namespace_packages(where='src', exclude=('tests')),
16-
install_requires=['pandas','numpy','altair','streamlit'],
24+
install_requires=REQUIREMENTS,
1725
classifiers=[
1826
"Programming Language :: Python :: 3",
1927
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)