-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
81 lines (73 loc) · 1.68 KB
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
[project]
name = "Dash_tooltip"
version = "0.4.2"
description = "A tooltip functionality for Dash."
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"dash>=2.13.0",
"plotly>=5.17.0"
]
authors = [
{ name = "kb-" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/kb-/Dash_tooltip"
[dependency-groups]
dev = [
"dash_bootstrap_components",
"numpy",
"pandas",
"plotly-resampler",
"trace_updater",
"pytest",
"pytest-testmon",
"pre-commit",
"black",
"isort",
"mypy",
"bandit",
"ruff",
"nox",
"selenium",
"ipython",
"jupytext",
"jupyterlab",
"ipywidgets",
"PyQt6; python_version >= '3.8'",
"PyQt6-WebEngine; python_version >= '3.8'",
"dash[testing]"
]
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["dash_tooltip*"]
[tool.setuptools_scm]
write_to = "dash_tooltip/_version.py"
[tool.flake8]
max-line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
markers = [
"selenium: marks tests as requiring Selenium (deselect with '-k \"not selenium\"')",
"selenium_dbg: Selenium debug"
]