-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
pyproject.toml
58 lines (53 loc) · 1.51 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
[tool.poetry]
name = "dash-extensions"
version = "1.0.20"
description = "Extensions for Plotly Dash."
authors = ["emher <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://dash-extensions.com"
repository = "https://github.com/thedirtyfew/dash-extensions"
include = [
"dash_extensions/*.py",
"dash_extensions/dash_extensions.min.js",
"dash_extensions/dash_extensions.min.js.map",
"dash_extensions/async-lottie.js",
"dash_extensions/async-lottie.js.map",
"dash_extensions/async-mermaid.js",
"dash_extensions/async-mermaid.js.map",
"dash_extensions/metadata.json",
"dash_extensions/package-info.json",
"README.md",
"LICENSE",
"package.json"
]
[tool.poetry.dependencies]
python = ">=3.9,<4"
dash = ">=2.18.2"
more-itertools = ">=10.2.0, <11.0.0"
jsbeautifier = "^1.14.3"
Flask-Caching = "^2.1.0"
dash-mantine-components = {version = ">=0.14.11", optional = true}
dataclass-wizard = "^0.30.1"
pydantic = "^2.10.1"
[tool.poetry.extras]
mantine = ["dash-mantine-components"]
[tool.poetry.group.dev.dependencies]
dash = {extras = ["dev", "testing"], version = "^2.18.2"}
pytest-cov = "^6.0.0"
pandas = ">=2.2.3"
quart = "^0.18.3"
starlette = ">=0.36.2,<0.41.0"
requests = "^2.32.2"
certifi = ">=2023.7.22,<2025.0.0"
uvicorn = "^0.32.1"
sse-starlette = "^1.2.1"
urllib3 = "^1.26.18"
pre-commit = "^3.7.1"
ruff = "^0.4.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py313"