-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.23 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
[tool.poetry]
name = "pipeline-dash"
version = "0.2.0"
description = ""
authors = ["Stefan Hammer <hammerstefan@gmail.com>"]
readme = "README.md"
packages = [{include = "pipeline_dash"}]
license = "GPL-3.0-or-later"
[tool.poetry.scripts]
pd = "pipeline_dash:main.cli"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
dash-bootstrap-components = "^1.2.1"
dash-bootstrap-templates = "^1.0.7"
dash-cytoscape = "^0.3.0"
dash = {extras = ["diskcache"], version = "^2.7.0"}
mergedeep = "^1.3.4"
more-itertools = "^8.14.0"
networkx = "^2.8.8"
plotly = "^5.11.0"
python-jenkins = "^1.7.0"
requests = "^2.28.1"
rich = "^12.6.0"
textual = "^0.6.0"
urllib3 = "^1.26.13"
aiohttp = "^3.8.3"
dash-tabulator = "^0.4.2"
pyyaml = "^6.0"
typing-extensions = "^4.4.0"
dash-extensions = "^0.1.7"
rich-click = "^1.6.0"
tenacity = "^8.1.0"
cerberus = "^1.3.4"
flatdict = "^4.0.1"
pytest = "^7.2.0"
yappi = "^1.4.0"
line-profiler = "^4.0.2"
line-profiler-pycharm = "^1.1.0"
flask-debugtoolbar = "^0.13.1"
flask-debugtoolbar-lineprofilerpanel = "^1.0.2"
[tool.poetry.group.devel.dependencies]
types-pyyaml = "^6.0.12.2"
types-click = "^7.1.8"
mypy = "^0.991"
docutils = "^0.19"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"