-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.29 KB
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
[project]
name = "deutsche-bahn-data"
version = "0.1.0"
description = "A collection of Python scripts to query and analyze Deutsche Bahn data."
readme = "README.md"
license = "MIT"
authors = [
{name = "Piet Brömmel", email = "piet.broemmel@gmail.com"}
]
keywords = ["deutsche-bahn", "railway", "transportation", "data"]
requires-python = ">=3.12"
dependencies = [
"pandas>=2.3.2",
"python-dotenv>=1.0.0",
"aiohttp>=3.9.0",
"aiolimiter>=1.1.0",
"tenacity>=8.2.0",
"pyarrow>=22.0.0",
"lxml>=6.0.0",
"duckdb>=1.4.0",
"pre-commit>=4.3.0",
"ruff>=0.12.10",
"jupyterlab>=3.6.8",
"ipynbname>=2025.8.0.0",
"pytest>=9.0.0",
"plotly>=6.3.0",
"htpy>=0.9.0",
"jinja2>=3.1.0",
"matplotlib>=3.10.8",
"tqdm>=4.67.1",
]
[project.urls]
Homepage = "https://github.com/piebro/deutsche-bahn-data/"
Repository = "https://github.com/piebro/deutsche-bahn-data/"
Issues = "https://github.com/piebro/deutsche-bahn-data/issues"
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"F", # Pyflakes
"UP", # pyupgrade
"B018", # Found useless expression.
"I", # isort
"RUF", # ruff
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
pythonpath = ["."]