-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (63 loc) · 1.18 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
59
60
61
62
63
64
[project]
name = ""
version = ""
description = ""
authors = [
{name = "Christian Hagau", email = "[email protected]"},
]
dependencies = [
"matplotlib==3.10.0",
"numpy>=2.2.1",
"jsonpickle",
"ujson",
"pandas==2.2.3",
"SQLAlchemy",
"seaborn==0.13.2",
"sphinx",
"numpydoc",
"sphinx-rtd-theme",
"recommonmark",
"tabulate",
"bottleneck",
"numexpr",
"pyarrow",
"dask[complete]==2024.12.1",
"dask-jobqueue==0.9.0",
"distributed==2024.12.1",
"graphviz>=0.20.1",
"ipython>=8.25.0",
"ipdb>=0.13.13",
"yamllint>=1.35.1",
]
requires-python = ">=3.10,<3.13"
license = {text = "GPLv3"}
readme = "README.md"
[tool]
[tool.pdm]
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[tool.pdm.dev-dependencies]
dev = [
"pylint>=3.2.6",
"autopep8",
"wrapt",
"typed-ast",
"rope",
"pycodestyle",
"mccabe",
"lazy-object-proxy",
"isort",
"mypy>=0.982",
"autoflake>=1.7.7",
"ruff>=0.4.9",
]