-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.01 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
[project]
name = "make-gtfs"
version = "4.1.1"
description = "A Python 3.10+ library to build GTFS feeds from basic route information."
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Alexander Raichev", email = "araichev@mrcagney.com" },
]
dependencies = [
"click>=8.1.7",
"gtfs-kit>=8",
"pandera>=0.11.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools]
packages = ["make_gtfs"]
[project.scripts]
make_gtfs = "make_gtfs.cli:make_gtfs"
[tool.uv]
dev-dependencies = [
"pytest>=6.2.5",
"jupyter>=1.0.0",
"pre-commit-uv>=0",
"Sphinx>=5.0.2",
"publish-sphinx-docs>=1.0.3",
"black>=22",
"ruff>=0.0.259",
"nbstripout>=0.6.1",
]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"serial",
]
[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
lint.select = ["E", "F"]
lint.ignore = ["E501", "E731", "F401", "F403"]
exclude = ["*.ipynb"]