From feeb5095371b622d6b2bcee343148a09c2f87476 Mon Sep 17 00:00:00 2001 From: WilliamRoyNelson Date: Wed, 31 May 2023 23:18:23 -0700 Subject: [PATCH] Add pypi classifiers to pyproject.toml (#4383) * Add pypi classifiers to pyproject.toml * Add OS classifier --------- Co-authored-by: Freddy Boulton --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2f6260f90d..49cbb4daa8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,22 @@ authors = [ ] keywords = ["machine learning", "reproducibility", "visualization"] +classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'License :: OSI Approved :: Apache Software License', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Topic :: Scientific/Engineering', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Scientific/Engineering :: Visualization', +] + [project.scripts] gradio = "gradio.cli:cli" upload_theme = "gradio.themes.upload_theme:main"