mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
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
This commit is contained in:
parent
ff3dd72469
commit
dded794eeb
1 changed files with 27 additions and 0 deletions
27
setup.py
27
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue