-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
58 lines (51 loc) · 1.18 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
[project]
name = "gtfs-kit"
version = "8.1.1"
description = "A Python library for analyzing GTFS feeds."
readme = "README.rst"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Alexander Raichev", email = "[email protected]" },
]
dependencies = [
"shapely>=1.8",
"pycountry>=19",
"json2html>=1",
"geopandas>=1",
"rtree>=0",
"folium>=0",
"requests>=2",
"pandas>=2.2.2",
]
[project.urls]
Repository = "https://github.com/mrcagney/gtfs_kit"
Documentation = "https://mrcagney.github.io/gtfs_kit_docs"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools]
packages = ["gtfs_kit"]
[tool.uv]
dev-dependencies = [
"jupyter>=1",
"pytest>=6",
"sphinx>=3",
"pre-commit-uv>=0",
"matplotlib>=1",
"pytest-socket>=0",
"black>22",
"nbstripout>=0.5",
"ruff>=0.0.257",
"publish_sphinx_docs>=1.0",
]
[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"]