From 7b03d538ac73978457a17afa051121e3c7356ae0 Mon Sep 17 00:00:00 2001 From: Moritz Huebner Date: Fri, 17 Mar 2023 10:51:09 +1100 Subject: [PATCH 1/2] Add long description to setup.py --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index c6d698b4d..86a7299bc 100644 --- a/setup.py +++ b/setup.py @@ -161,6 +161,8 @@ def remove_extension(pattern): name="torchdata", version=VERSION, description="Composable data loading modules for PyTorch", + long_description=Path("README.md").read_text(encoding="utf-8"), + long_description_content_type="text/markdown", url="https://github.com/pytorch/data", author="PyTorch Team", author_email="packages@pytorch.org", From 823593209f0bfb08f22e662b92942ed777435eaa Mon Sep 17 00:00:00 2001 From: Moritz Huebner Date: Fri, 17 Mar 2023 10:57:42 +1100 Subject: [PATCH 2/2] Added Python 3.11 support classifier --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 86a7299bc..77ae89cb8 100644 --- a/setup.py +++ b/setup.py @@ -178,6 +178,7 @@ def remove_extension(pattern): "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Scientific/Engineering :: Artificial Intelligence", ],