mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
52f7831751
* refactor: Use package.json for version management - uses package.json file for version management. - updated the regex pattern. - removed the logic that creates or updates the version.txt file * load version through package.json * fix code duplication * add changeset * add changeset * fixes * fix * package version * fix * typing * typing * changes * add changeset --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
70 lines
2.0 KiB
TOML
70 lines
2.0 KiB
TOML
[build-system]
|
|
requires = ["hatchling", "hatch-requirements-txt", "hatch-fancy-pypi-readme>=22.5.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "gradio_client"
|
|
dynamic = ["version", "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 = "team@gradio.app" },
|
|
{ name = "Ali Abid", email = "team@gradio.app" },
|
|
{ name = "Ali Abdalla", email = "team@gradio.app" },
|
|
{ name = "Dawood Khan", email = "team@gradio.app" },
|
|
{ name = "Ahsen Khaliq", email = "team@gradio.app" },
|
|
{ name = "Pete Allen", email = "team@gradio.app" },
|
|
{ name = "Freddy Boulton", email = "team@gradio.app" },
|
|
]
|
|
keywords = ["machine learning", "client", "API"]
|
|
|
|
classifiers = [
|
|
'Development Status :: 4 - Beta',
|
|
'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 :: Software Development :: User Interfaces',
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/gradio-app/gradio"
|
|
|
|
[tool.hatch.version]
|
|
path = "gradio_client/package.json"
|
|
pattern = ".*\"version\":\\s*\"(?P<version>[^\"]+)\""
|
|
|
|
[tool.hatch.metadata.hooks.requirements_txt]
|
|
filename = "requirements.txt"
|
|
|
|
[tool.hatch.metadata.hooks.fancy-pypi-readme]
|
|
content-type = "text/markdown"
|
|
fragments = [
|
|
{ path = "README.md" },
|
|
]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/gradio_client",
|
|
"/README.md",
|
|
"/requirements.txt",
|
|
]
|
|
|
|
[tool.ruff]
|
|
extend = "../../pyproject.toml"
|
|
|
|
[tool.ruff.isort]
|
|
known-first-party = [
|
|
"gradio_client"
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
GRADIO_ANALYTICS_ENABLED = "False"
|
|
HF_HUB_DISABLE_TELEMETRY = "1" |