-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (51 loc) · 1.84 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
59
60
61
62
63
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0.0", "wheel"]
[project]
name = "travel_time_matrix_computer"
description = "Wrap the entire DGL travel time matrix computation (read config, prepare data, compile output"
readme = "README.md"
authors = [
{ name = "Christoph Fink", email = "[email protected]" },
]
dependencies = [
"car_speed_annotator @ git+https://github.com/DigitalGeographyLab/car-speed-annotator.git",
"cycling_speed_annotator @ git+https://github.com/DigitalGeographyLab/cycling-speed-annotator",
"dateparser",
"geopandas",
"pandas",
"parking_times_calculator @ git+https://github.com/DigitalGeographyLab/parking-times-calculator",
"pyaml",
"pyproj",
"r5py",
"shapely>=2",
"zstandard",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
keywords = ["transport", "routing", "research", "car"]
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[project.scripts]
travel-time-matrix = "travel_time_matrix_computer.__main__:main"
[project.optional-dependencies]
tests = ["pytest", "pytest-asyncio", "pytest-cov", "pytest-lazy-fixture"]
[project.urls]
Repository = "https://github.com/DigitalGeographyLab/Helsinki-Travel-Time-Matrices.git"
"Bug tracker" = "https://github.com/DigitalGeographyLab/Helsinki-Travel-Time-Matrices/issues"
[tool.black]
extend-exclude = "\\.virtualenv"
[tool.coverage.run]
omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "-p no:faulthandler --cov --cov-report term-missing"
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.setuptools.dynamic]
version = {attr = "travel_time_matrix_computer.__version__"}