Files
dash-api/lib/python3.11/site-packages/pyproject.toml

121 lines
2.6 KiB
TOML
Raw Permalink Normal View History

2025-09-07 22:09:54 +02:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dash-bootstrap-components"
description = "Bootstrap themed components for use in Plotly Dash"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Faculty Science Ltd" },
{ name = "Pascal Bugnion" },
{ name = "Tom Begley", email = "tomcbegley@gmail.com" },
]
maintainers = [{ name = "Tom Begley", email = "tomcbegley@gmail.com" }]
requires-python = ">=3.9"
dependencies = ["dash>=3.0.4"]
classifiers = [
"Framework :: Dash",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://www.dash-bootstrap-components.com/"
Source = "https://github.com/dbc-team/dash-bootstrap-components/"
"Bug Reports" = "https://github.com/dbc-team/dash-bootstrap-components/issues"
[project.optional-dependencies]
pandas = ["numpy>=2.0.2", "pandas>=2.2.3"]
[tool.hatch.version]
path = "dash_bootstrap_components/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"dash_bootstrap_components",
"README.md",
"LICENSE",
"NOTICE.txt",
"pyproject.toml",
]
artifacts = [
"dash_bootstrap_components/_components/dash_bootstrap_components.min.js",
"dash_bootstrap_components/_components/*.py",
]
[tool.hatch.build.targets.wheel]
include = [
"dash_bootstrap_components",
"README.md",
"LICENSE",
"NOTICE.txt",
"pyproject.toml",
]
artifacts = [
"dash_bootstrap_components/_components/dash_bootstrap_components.min.js",
"dash_bootstrap_components/_components/*.py",
]
[tool.pytest.ini_options]
minversion = "6.0"
[tool.ruff]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
select = [
# pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
]
[tool.ruff.lint.per-file-ignores]
"docs/components_page/components/**.py" = ["F821"]
[tool.ruff.lint.isort]
known-first-party = [
"components_page",
"demos",
"examples",
"markdown_to_html",
"server",
]
known-third-party = [
"dash",
"dash_bootstrap_components",
"dash_core_components",
"dash_html_components",
"flask",
"invoke",
"jinja2",
"markdown",
"pandas",
"plotly",
"semver",
"setuptools",
"sklearn",
"termcolor",
"werkzeug",
"wordcloud",
]
[tool.uv]
dev-dependencies = [
"dash[dev,testing]>=2.0.0",
"pytest>=8.3.4",
"ruff>=0.8.5",
"semver>=3.0.2",
]