blob: 6b288315fc2702157a072b18c2ef2ae5489247bc (
plain)
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
|
[project]
name = "gtfs-vigo"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"colorama>=0.4.6",
"jinja2>=3.1.6",
"pytest>=8.4.1",
"requests>=2.32.3",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
|