Skip to content

Commit

Permalink
Merge pull request #825 from kmaehashi/add-long-description
Browse files Browse the repository at this point in the history
add long_description
  • Loading branch information
linshokaku committed Jul 24, 2024
2 parents e1d095b + 915f86a commit cb41996
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@
# Get __version__ variable
exec(open(os.path.join(here, "pytorch_pfn_extras", "_version.py")).read())

long_description = open(os.path.join(here, "README.md")).read()

setuptools.setup(
name="pytorch-pfn-extras",
version=__version__, # NOQA
description="Supplementary components to accelerate research and "
"development in PyTorch.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Preferred Networks, Inc.",
license="MIT License",
install_requires=["numpy", "packaging", "torch", "typing-extensions>=3.10"],
Expand Down

0 comments on commit cb41996

Please sign in to comment.