From dded794eebf22ee41ae5e7a49253dcbd02c7e17d Mon Sep 17 00:00:00 2001 From: Soumith Chintala Date: Thu, 1 Aug 2019 11:54:40 -0700 Subject: [PATCH] add setup metadata to help PyPI flesh out content on pypi package page (#22085) Summary: add setup metadata to help PyPI flesh out content on pypi package page. Apparently this might help flesh out the "Used By" feature according to driazati Pull Request resolved: https://github.com/pytorch/pytorch/pull/22085 Differential Revision: D16604703 Pulled By: soumith fbshipit-source-id: ddb4f7ba7c24fdf718260aed28cc7bc9afb46de9 --- setup.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/setup.py b/setup.py index d0ed29acee4..f4f173737ba 100644 --- a/setup.py +++ b/setup.py @@ -854,6 +854,33 @@ if __name__ == '__main__': 'python/serialized_test/data/operator_test/*.zip', ] }, + url='https://pytorch.org/', + download_url='https://github.com/pytorch/pytorch/tags', + author='PyTorch Team', + author_email='packages@pytorch.org', + # PyPI package information. + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Intended Audience :: Education', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: C++', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Topic :: Scientific/Engineering', + 'Topic :: Scientific/Engineering :: Mathematics', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Software Development', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], + license='BSD-3', + keywords='pytorch machine learning', ) if EMIT_BUILD_WARNING: print_box(build_update_message)