mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
55 lines
1.4 KiB
TOML
55 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["python"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["python/fastui"]
|
|
|
|
[tool.hatch.version]
|
|
path = "python/fastui/__init__.py"
|
|
|
|
[project]
|
|
name = "fastui"
|
|
description = "Build better UIs faster."
|
|
authors = [{ name = "Samuel Colvin", email = "s@muelcolvin.com" }]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Topic :: Internet",
|
|
"License :: OSI Approved :: MIT License",
|
|
"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',
|
|
'Programming Language :: Python :: 3.12',
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Information Technology",
|
|
"Framework :: Pydantic :: 2",
|
|
"Framework :: FastAPI",
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = ["pydantic[email]>=2.5.2"]
|
|
dynamic = ["version"]
|
|
|
|
[project.optional-dependencies]
|
|
fastapi = [
|
|
"fastapi>=0.104",
|
|
"python-multipart>=0.0.6",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/samuelcolvin/FastUI"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
extend-select = ["Q", "RUF100", "UP", "I"]
|
|
flake8-quotes = {inline-quotes = "single", multiline-quotes = "double"}
|
|
format.quote-style="single"
|
|
target-version = "py38"
|