Skip to content

Commit dded794

Browse files
soumithfacebook-github-bot
authored andcommitted
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: #22085 Differential Revision: D16604703 Pulled By: soumith fbshipit-source-id: ddb4f7ba7c24fdf718260aed28cc7bc9afb46de9
1 parent ff3dd72 commit dded794

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -854,6 +854,33 @@ def print_box(msg):
854854
'python/serialized_test/data/operator_test/*.zip',
855855
]
856856
},
857+
url='https://pytorch.org/',
858+
download_url='https://github.com/pytorch/pytorch/tags',
859+
author='PyTorch Team',
860+
author_email='packages@pytorch.org',
861+
# PyPI package information.
862+
classifiers=[
863+
'Development Status :: 5 - Production/Stable',
864+
'Intended Audience :: Developers',
865+
'Intended Audience :: Education',
866+
'Intended Audience :: Science/Research',
867+
'License :: OSI Approved :: BSD License',
868+
'Programming Language :: C++',
869+
'Programming Language :: Python :: 2',
870+
'Programming Language :: Python :: 2.7',
871+
'Programming Language :: Python :: 3',
872+
'Programming Language :: Python :: 3.5',
873+
'Programming Language :: Python :: 3.6',
874+
'Programming Language :: Python :: 3.7',
875+
'Topic :: Scientific/Engineering',
876+
'Topic :: Scientific/Engineering :: Mathematics',
877+
'Topic :: Scientific/Engineering :: Artificial Intelligence',
878+
'Topic :: Software Development',
879+
'Topic :: Software Development :: Libraries',
880+
'Topic :: Software Development :: Libraries :: Python Modules',
881+
],
882+
license='BSD-3',
883+
keywords='pytorch machine learning',
857884
)
858885
if EMIT_BUILD_WARNING:
859886
print_box(build_update_message)

0 commit comments

Comments
 (0)