-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
43 lines (37 loc) · 1.19 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyroutelib3"
authors = [{name = "Mikołaj Kuranowski", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version", "description"]
requires-python = ">=3.8, <4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"typing_extensions ~= 4.0",
"protobuf ~= 5.27",
"filelock ~= 3.15",
]
[project.urls]
Home = "https://github.com/MKuranowski/pyroutelib3"
Source = "https://github.com/MKuranowski/pyroutelib3"
Documentation = "https://pyroutelib3.readthedocs.io/"
Tracker = "https://github.com/MKuranowski/pyroutelib3/issues"
[tool.black]
line-length = 100
exclude = "pyroutelib3/osm/pbf"
[tool.isort]
profile = "black"
line_length = 100
skip = ["pyroutelib3/osm/pbf"]
[tool.pyright]
typeCheckingMode = "strict"
ignore = ["pyroutelib3/osm/pbf", "docs"]