forked from emilhe/dash-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.43 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
[tool.poetry]
name = "dash-extensions"
version = "1.0.12"
description = "Extensions for Plotly Dash."
authors = ["emher <emil.h.eriksen@gmail.com>"]
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.8,<4"
dash = ">=2.15.0"
more-itertools = "^9.0.0"
jsbeautifier = "^1.14.3"
Flask-Caching = "^2.1.0"
dash-mantine-components = {version = "^0.11.1", optional = true}
dataclass-wizard = "^0.22.2"
[tool.poetry.extras]
mantine = ["dash-mantine-components"]
[tool.poetry.dev-dependencies]
dash = {extras = ["dev", "testing"], version = "^2.15.0"}
pytest-cov = "^4.0.0"
black = "^22.12.0"
pandas = ">=1.5.3"
quart = "^0.19.3"
starlette = "^0.31.1"
requests = "^2.31.0"
certifi = "^2023.07.22"
uvicorn = "^0.23.2"
sse-starlette = "^1.6.5"
urllib3 = "<2.0.0"
[build-system]
requires = ["poetry-core>=1.5.1"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py310"]