-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
123 lines (106 loc) · 2.68 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["setuptools>=61.0", "aequilibrae>=1.0.0", "geopandas>=0.14.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = 'mapmatcher'
authors = [{ name = "Pedro Camargo" }]
maintainers = [{ name = "Pedro Camargo", email = "[email protected]" }]
dynamic = ["version"]
description = "A package to map-match GPS traces onto an arbitrary network"
license = {text = "MIT"}
requires-python = ">=3.9.0"
keywords = ["map-matching", "gps", "network", "routing", "aequilibrae"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
'aequilibrae>=1.0.0',
'geopandas>=0.14.1',
'tqdm'
]
[project.optional-dependencies]
testing = ['ruff', 'black', 'pytest']
build = ["setuptools", "wheel", "build", "tqdm"]
auxiliary = ['folium', 'notebook']
docs = ["pyaml",
"enum34>=1.1.6",
"Sphinx",
"pydata-sphinx-theme",
"pillow",
"matplotlib",
"folium",
"sphinx-gallery",
"ipython_genutils",
"folium"]
dev = ['mapmatcher[testing, auxiliary, build, docs]']
[project.urls]
Homepage = "https://github.com/pedrocamargo/map_matching"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.package-data]
"mapmatcher.example_data" = ["*.csv"]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests"]
namespaces = true
[tool.setuptools.dynamic]
version = { attr = "mapmatcher.__version__" }
[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311']
include = '\.pyi?$'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 120
profile = "black"
[tool.ruff]
select = ["B", "C", "E", "F", "W"]
ignore = ["E501", "F401", "B028"]
exclude = [
".idea",
"__pycache__",
"sphinx",
".ipynb_checkpoints",
"docs/*",
"notebooks",
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
".venv",
]
line-length = 120
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py39"
[tool.ruff.mccabe]
max-complexity = 20