-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (37 loc) · 891 Bytes
/
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
[tool.poetry]
name = "datac-analysis"
version = "0.1.0"
description = "Consumer of Atac feed and schedule updates"
authors = ["Francesco Lucantoni <[email protected]>"]
readme = "README.md"
packages = [{include = "*", from="src"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
jupytext = "^1.16.1"
notebook = "^7.1.2"
gtfs-realtime-bindings = "1.0.0"
pandas = "^2.2.1"
pyarrow = "^15.0.2"
matplotlib = "^3.8.3"
gtfs-kit = "^6.1.0"
pytz = "^2024.1"
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
pylint = "^3.1.0"
mypy = "^1.8.0"
black = "^24.2.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
[tool.pylint."MESSAGE CONTROL"]
max-line-length = 120
disable = [
"missing-module-docstring",
"missing-class-docstring"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"