-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 800 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 800 Bytes
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
[tool.poetry]
name = "fastapi-dash"
version = "1.0.0"
description = "Plotly Dash embedded in FastAPI"
authors = [
"mstaal",
]
packages=[{ include="app"},]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
python-json-logger = "2.0.2"
numpy = "^1.22.3"
pandas = "1.4.0"
pydantic = "^1.10.0"
fastapi = "0.104.1"
uvicorn = "0.24.0.post1"
a2wsgi = "1.8.0"
dash = "^2.14.1"
dash-bootstrap-components = "^1.5.0"
certifi = ">=2023.07.22"
debugpy = { version = "^1.6", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = ">=5.3.3"
jsonschema = "^4.17.0"
nose = "1.3.7"
coverage = "5.0.3"
deepdiff6 = ">=6.2.0"
devtools = ">=0.9.0"
requests = ">= 2.28.1"
[tool.poetry.extras]
debugpy = ["debugpy"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"