mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
Update Python setuptools classfiers to remove windows and mac (#8776)
This commit is contained in:
parent
c117ac57b7
commit
6f2f4721ec
1 changed files with 24 additions and 19 deletions
43
setup.py
43
setup.py
|
|
@ -281,6 +281,29 @@ default_training_package_device = parse_arg_remove_boolean(sys.argv, '--default_
|
|||
package_data = {}
|
||||
data_files = []
|
||||
|
||||
classifiers = [
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: POSIX :: Linux',
|
||||
'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',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 3 :: Only',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9']
|
||||
|
||||
if not enable_training:
|
||||
classifiers.extend([
|
||||
'Operating System :: Microsoft :: Windows',
|
||||
'Operating System :: MacOS'])
|
||||
|
||||
if enable_training:
|
||||
packages.extend(['onnxruntime.training',
|
||||
'onnxruntime.training.amp',
|
||||
|
|
@ -529,23 +552,5 @@ setup(
|
|||
'onnxruntime_test = onnxruntime.tools.onnxruntime_test:main',
|
||||
]
|
||||
},
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: POSIX :: Linux',
|
||||
'Operating System :: Microsoft :: Windows',
|
||||
'Operating System :: MacOS',
|
||||
'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',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 3 :: Only',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9'],
|
||||
classifiers=classifiers,
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue