-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.55 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
65
66
67
68
69
70
71
72
[build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tasi"
version = "0.1.0+1.gc77fc0d.dirty"
description = "Library for Traffic Analysis and Situation Interpretation"
authors = [ "Lars Klitzke <[email protected]>", "Clemens Schicktanz <[email protected]",]
readme = "README.md"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "tasi/_version.py"
versionfile_build = "tasi/_version.py"
tag_prefix = "v"
parentdir_prefix = "tasi-"
[tool.autopep8]
max_line_length = 100
ignore = "E501,W6"
in-place = true
recursive = true
aggressive = 3
[tool.poetry.dependencies]
python = "^3.12.0"
pandas = "2.2.3"
numpy = "2.0.2"
numba = "0.60.0"
typing-extensions = "4.12.2"
coloredlogs = "^15.0.1"
matplotlib = "3.9.2"
[tool.poetry.scripts]
dlr-downloader = "tasi.dlr.dataset:download"
[tool.poetry.group.test.dependencies]
coverage = "^7.6.4"
ipython = "^8.18.1"
pytest = "^8.3.3"
pytest-xdist = "^3.6.1"
pytest-cov = "^5.0.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.1"
autopep8 = "^2.3.1"
[tool.poetry.group.build.dependencies]
wheel = "*"
toml = "*"
[tool.poetry.group.docs.dependencies]
ipython = "^8.18.1"
sphinx = "7.4.7"
nbsphinx = "0.8.12"
pydata-sphinx-theme = "^0.15.4"
docutils = "*"
markdown = "*"
markdown-it-py = "*"
pymdown-extensions = "*"
sphinxcontrib-apidoc = "*"
sphinx-copybutton = "*"
sphinx_markdown_parser = "*"
sphinx-gallery = "0.18.0"
myst-parser = "3.0.1"
numpydoc = "1.8.0"
sphinx-toggleprompt = "0.5.2"
ipykernel = "*"
jupytext = "^1.16.4"
sphinxemoji = "^0.3.1"