This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
85 lines (72 loc) · 1.87 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
[build-system]
requires = ["setuptools>=61.0", "aequilibrae", "geopandas", "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"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: Proprietary",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [
'aequilibrae',
'geopandas',
'tqdm'
]
[project.optional-dependencies]
linting = [
'ruff', 'pytest'
]
formatting = [
'black', 'isort'
]
docs = [
'aequilibrae',
'geopandas',
'tqdm',
'Sphinx',
'sphinx_theme',
'sphinx_autodoc_annotation',
'nbsphinx',
'pydata-sphinx-theme',
'pandoc',
'sphinx-gallery'
]
dev = ['mapmatcher[linting, formatting, 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]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests"]
namespaces = true
[tool.setuptools.dynamic]
version = { attr = "mapmatcher.__version__" }
[tool.black]
line-length = 120
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 120
profile = "black"