-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathpyproject.toml
122 lines (110 loc) · 2.78 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dash-bootstrap-components"
description = "Bootstrap themed components for use in Plotly Dash"
readme = "landing-page.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, <4"
dependencies = ["dash>=2.0.0"]
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://dash-bootstrap-components.opensource.faculty.ai/"
Source = "https://github.com/facultyai/dash-bootstrap-components/"
"Bug Reports" = "https://github.com/facultyai/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",
"landing-page.md",
"LICENSE",
"NOTICE.txt",
"pyproject.toml",
]
artifacts = [
"dash_bootstrap_components/_components/dash_bootstrap_components.min.js",
"dash_bootstrap_components/_components/metadata.json",
"dash_bootstrap_components/_components/*.py",
]
[tool.hatch.build.targets.wheel]
include = [
"dash_bootstrap_components",
"landing-page.md",
"LICENSE",
"NOTICE.txt",
"pyproject.toml",
]
artifacts = [
"dash_bootstrap_components/_components/dash_bootstrap_components.min.js",
"dash_bootstrap_components/_components/metadata.json",
"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",
]