mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
7bb561a294
* doc rewrite * changes * changes * tip * changes * notebook * add changeset * history * add * quickstart done * readme * changes * quickstart * changes * reorder * link * changes * changes * changes * quickstart done * readme * quickstart * quickstart' * moving around * spaces * readme * guides * guides * links * readme * readme * readme * readme * readme * readme * readme * readme * readme * readme * email address * add changeset * shorten quickstart * readme * Update README.md * readme * changes * Update guides/01_getting-started/01_quickstart.md Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> * Update guides/01_getting-started/01_quickstart.md Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> * Update guides/01_getting-started/01_quickstart.md Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> * changes * changes * remove gr.Interface.load * guides * changes * more changes * changes * sharing * concurrency * changes * changes * components * key features * event listeners * features * notebook * test * guides * changes * changes * changes * transitions * readme links * links * links * guides * new gif * add gif * update gif * Update guides/02_building-interfaces/01_more-on-examples.md * Update guides/03_building-with-blocks/01_blocks-and-event-listeners.md * Update guides/01_getting-started/01_quickstart.md Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> * Update guides/01_getting-started/02_key-features.md Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> * Update guides/01_getting-started/02_key-features.md Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> * Update guides/02_building-interfaces/00_the-interface-class.md Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> * Update guides/01_getting-started/01_quickstart.md Co-authored-by: Hannah <hannahblair@users.noreply.github.com> * Update guides/01_getting-started/02_key-features.md Co-authored-by: Hannah <hannahblair@users.noreply.github.com> * Update guides/01_getting-started/02_key-features.md Co-authored-by: Hannah <hannahblair@users.noreply.github.com> * changes * replace space * changes --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com> Co-authored-by: Hannah <hannahblair@users.noreply.github.com>
140 lines
4.4 KiB
TOML
140 lines
4.4 KiB
TOML
[build-system]
|
|
requires = [
|
|
"hatchling",
|
|
"hatch-requirements-txt",
|
|
"hatch-fancy-pypi-readme>=22.5.0",
|
|
]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "gradio"
|
|
dynamic = ["version", "dependencies", "optional-dependencies", "readme"]
|
|
description = "Python library for easily interacting with trained machine learning models"
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.8"
|
|
authors = [
|
|
{ name = "Abubakar Abid", email = "gradio-team@huggingface.co" },
|
|
{ name = "Ali Abid", email = "gradio-team@huggingface.co" },
|
|
{ name = "Ali Abdalla", email = "gradio-team@huggingface.co" },
|
|
{ name = "Dawood Khan", email = "gradio-team@huggingface.co" },
|
|
{ name = "Ahsen Khaliq", email = "gradio-team@huggingface.co" },
|
|
{ name = "Pete Allen", email = "gradio-team@huggingface.co" },
|
|
{ name = "Ömer Faruk Özdemir", email = "gradio-team@huggingface.co" },
|
|
{ name = "Freddy A Boulton", email = "gradio-team@huggingface.co" },
|
|
{ name = "Hannah Blair", email = "gradio-team@huggingface.co" },
|
|
]
|
|
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.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"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/gradio-app/gradio"
|
|
|
|
[tool.hatch.version]
|
|
path = "gradio/package.json"
|
|
pattern = ".*\"version\":\\s*\"(?P<version>[^\"]+)\""
|
|
|
|
[tool.hatch.metadata.hooks.requirements_txt]
|
|
filename = "requirements.txt"
|
|
|
|
[tool.hatch.metadata.hooks.requirements_txt.optional-dependencies]
|
|
oauth = ["requirements-oauth.txt"]
|
|
|
|
[tool.hatch.metadata.hooks.fancy-pypi-readme]
|
|
content-type = "text/markdown"
|
|
fragments = [{ path = "README.md" }]
|
|
|
|
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
|
|
pattern = "(website/homepage|readme_files)/"
|
|
replacement = 'https://raw.githubusercontent.com/gradio-app/gradio/main/\g<1>/'
|
|
|
|
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
|
|
pattern = 'demo/([\S]*.gif)'
|
|
replacement = 'https://raw.githubusercontent.com/gradio-app/gradio/main/demo/\g<1>'
|
|
|
|
[tool.hatch.build]
|
|
artifacts = [
|
|
"/gradio/templates",
|
|
"/gradio/_frontend_code",
|
|
"*.pyi",
|
|
"/gradio/node",
|
|
"py.typed"
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel.hooks.custom]
|
|
path = ".config/copy_frontend.py"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/gradio",
|
|
"/test",
|
|
"/README.md",
|
|
"/requirements.txt",
|
|
"/requirements-oauth.txt",
|
|
"/.config/copy_frontend.py",
|
|
"/js",
|
|
"/client/js",
|
|
]
|
|
|
|
[tool.pyright]
|
|
include = ["gradio/**/*.py"]
|
|
exclude = [
|
|
"gradio/themes/",
|
|
"gradio/_frontend_code/",
|
|
"gradio/components/*_plot.py",
|
|
"gradio/ipython_ext.py",
|
|
"gradio/node"
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py37"
|
|
extend-select = ["B", "C", "I", "N", "SIM", "UP"]
|
|
ignore = [
|
|
"C901", # function is too complex (TODO: un-ignore this)
|
|
"B023", # function definition in loop (TODO: un-ignore this)
|
|
"B008", # function call in argument defaults
|
|
"B017", # pytest.raises considered evil
|
|
"B028", # explicit stacklevel for warnings
|
|
"E501", # from scripts/lint_backend.sh
|
|
"SIM105", # contextlib.suppress (has a performance cost)
|
|
"SIM117", # multiple nested with blocks (doesn't look good with gr.Row etc)
|
|
"UP007", # use X | Y for type annotations (TODO: can be enabled once Pydantic plays nice with them)
|
|
"UP006", # use `list` instead of `List` for type annotations (fails for 3.8)
|
|
]
|
|
exclude = ["gradio/node/*.py"]
|
|
|
|
[tool.ruff.per-file-ignores]
|
|
"demo/*" = [
|
|
"E402", # Demos may have imports not at the top
|
|
"E741", # Demos may have ambiguous variable names
|
|
"F405", # Demos may use star imports
|
|
"I", # Don't care about import order
|
|
]
|
|
"gradio/__init__.py" = [
|
|
"F401", # "Imported but unused" (TODO: it would be better to be explicit and use __all__)
|
|
]
|
|
"gradio/routes.py" = [
|
|
"UP006", # Pydantic on Python 3.7 requires old-style type annotations (TODO: drop when Python 3.7 is dropped)
|
|
]
|
|
"gradio/cli/commands/files/NoTemplateComponent.py" = ["ALL"]
|
|
|
|
[tool.pytest.ini_options]
|
|
GRADIO_ANALYTICS_ENABLED = "False"
|