Skip to content

Commit

Permalink
Fix PyPI metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Jan 24, 2022
1 parent 0b4df91 commit a4074aa
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
4 changes: 4 additions & 0 deletions docs/pages/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Changes:

* Clarify SummaryReader's parameters (Breaking Change)

Fixes:

* Fix PyPI package metadata

v0.0.2
===================================

Expand Down
32 changes: 17 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,34 @@
long_description_content_type="text/markdown",
url=github_url,
project_urls={
'Changelog': f'{github_url}/blob/master/docs/pages/changelog.rst',
'Issues': f'{github_url}/issues',
'Source Code': github_url,
"Changelog": f"{github_url}/blob/master/docs/pages/changelog.rst",
"Issues": f"{github_url}/issues",
"Source Code": github_url,
},
keywords=(
'package, parser, plot, python, pytorch, reader, tensorboard, tensorboardx, tensorflow'
"package, parser, plot, python, pytorch, reader, tensorboard, tensorboardx, tensorflow"
),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=setuptools.find_packages(where=".", exclude=("tests*",)),
python_requires=">=3.7",
install_requires=[
'pandas>=1.3.0',
'tensorflow>=2.0.0',
"pandas>=1.3.0",
"tensorflow>=2.0.0",
],
extras_require={
'testing': ['pytest', 'mypy', 'flake8', 'pylint', 'sphinx',
'sphinx-rtd-theme', 'torch', 'tensorboardX', 'seaborn',
'pytest-cov', 'sphinx-tabs'],
"testing": ["pytest", "mypy", "flake8", "pylint", "sphinx",
"sphinx-rtd-theme", "torch", "tensorboardX", "seaborn",
"pytest-cov", "sphinx-tabs"],
},
)
)

# Note: PyPI seems to only recognize double-quoted strings

0 comments on commit a4074aa

Please sign in to comment.