-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (37 loc) · 996 Bytes
/
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
[project]
name = "InsightBoard"
description = "InsightBoard for data parsing and report generation"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"dash>=2.18.1",
"dash-table>=5.0.0",
"pandas>=2.2.3",
"dash-bootstrap-components>=1.6.0",
"pyarrow>=18.0.0",
"openpyxl>=3.1.5",
"jsonschema>=4.23.0",
"dash-dangerously-set-inner-html>=0.0.2",
"tomli-w>=1.0.0",
"waitress>=3.0.0",
"cachetools>=5.5.0",
"dash-bootstrap-templates>=1.2.4",
"adtl[autoparser]>=0.8.0",
]
scripts = { InsightBoard = "InsightBoard:main" }
dynamic = ["version"]
[project.optional-dependencies]
duckdb = ["duckdb>=1.1.2"]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
write_to = "src/InsightBoard/version.py"
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.uv]
package = true
dev-dependencies = [
"pytest-cov>=5.0.0",
"pytest>=8.3.3",
"selenium>=4.25.0",
]