Skip to content

Commit a4074aa

Browse files
committed
Fix PyPI metadata
1 parent 0b4df91 commit a4074aa

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

docs/pages/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Changes:
99

1010
* Clarify SummaryReader's parameters (Breaking Change)
1111

12+
Fixes:
13+
14+
* Fix PyPI package metadata
15+
1216
v0.0.2
1317
===================================
1418

setup.py

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,34 @@
1515
long_description_content_type="text/markdown",
1616
url=github_url,
1717
project_urls={
18-
'Changelog': f'{github_url}/blob/master/docs/pages/changelog.rst',
19-
'Issues': f'{github_url}/issues',
20-
'Source Code': github_url,
18+
"Changelog": f"{github_url}/blob/master/docs/pages/changelog.rst",
19+
"Issues": f"{github_url}/issues",
20+
"Source Code": github_url,
2121
},
2222
keywords=(
23-
'package, parser, plot, python, pytorch, reader, tensorboard, tensorboardx, tensorflow'
23+
"package, parser, plot, python, pytorch, reader, tensorboard, tensorboardx, tensorflow"
2424
),
2525
classifiers=[
26-
'Development Status :: 4 - Beta',
27-
'Intended Audience :: Science/Research',
28-
'Programming Language :: Python :: 3.7',
29-
'Programming Language :: Python :: 3.8',
30-
'Programming Language :: Python :: 3.9',
26+
"Development Status :: 4 - Beta",
27+
"Intended Audience :: Science/Research",
28+
"Programming Language :: Python :: 3.7",
29+
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
3131
"License :: OSI Approved :: MIT License",
3232
"Operating System :: OS Independent",
3333
],
3434
package_dir={"": "."},
3535
packages=setuptools.find_packages(where=".", exclude=("tests*",)),
3636
python_requires=">=3.7",
3737
install_requires=[
38-
'pandas>=1.3.0',
39-
'tensorflow>=2.0.0',
38+
"pandas>=1.3.0",
39+
"tensorflow>=2.0.0",
4040
],
4141
extras_require={
42-
'testing': ['pytest', 'mypy', 'flake8', 'pylint', 'sphinx',
43-
'sphinx-rtd-theme', 'torch', 'tensorboardX', 'seaborn',
44-
'pytest-cov', 'sphinx-tabs'],
42+
"testing": ["pytest", "mypy", "flake8", "pylint", "sphinx",
43+
"sphinx-rtd-theme", "torch", "tensorboardX", "seaborn",
44+
"pytest-cov", "sphinx-tabs"],
4545
},
46-
)
46+
)
47+
48+
# Note: PyPI seems to only recognize double-quoted strings

0 commit comments

Comments
 (0)