|
7 | 7 | from os import path
|
8 | 8 | from setuptools import setup, find_packages, find_namespace_packages
|
9 | 9 |
|
10 |
| -CWD = path.abspath(path.dirname(__file__)) |
11 |
| - |
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 | 10 | with io.open("README.md", "r") as inp:
|
19 | 11 | LONG_DESCRIPTION = inp.read()
|
20 |
| - |
21 |
| -with io.open("requirements.txt", "r") as inp: |
22 |
| - REQUIREMENTS = [el.strip() for el in inp.read().split(",")] |
23 |
| - |
24 | 12 |
|
25 | 13 | setup(
|
26 | 14 | name="penn_chime",
|
|
37 | 25 | "Documentation": "https://codeforphilly.github.io/chime/",
|
38 | 26 | },
|
39 | 27 | package_dir={'': 'src'},
|
40 |
| - #packages=find_namespace_packages(where='src', exclude=('tests')), |
| 28 | + packages=find_namespace_packages(where='src', exclude=('tests')), |
41 | 29 | install_requires=[
|
42 | 30 | "streamlit",
|
43 | 31 | "pandas",
|
|
59 | 47 | 'console_scripts': ['penn_chime=penn_chime.cli:main'],
|
60 | 48 | },
|
61 | 49 | keywords=[],
|
62 |
| - packages=find_packages(".", exclude=["docs", "k82", "script", "tests"]), |
63 |
| - #install_requires=REQUIREMENTS, |
64 | 50 | include_package_data=True,
|
65 | 51 | )
|
0 commit comments