forked from gboeing/osmnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (70 loc) · 2.28 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [{name = "Geoff Boeing", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"geopandas>=0.12",
"networkx>=2.5",
"numpy>=1.20",
"pandas>=1.1",
"requests>=2.25",
"shapely>=2.0",
]
description = "Download, model, analyze, and visualize street networks and other geospatial features from OpenStreetMap"
dynamic = ["version"]
keywords = ["GIS", "Networks", "OpenStreetMap", "Routing"]
license = {text = "MIT License"}
maintainers = [{name = "OSMnx contributors"}]
name = "osmnx"
readme = "README.md"
requires-python = ">=3.8"
urls.Documentation = "https://osmnx.readthedocs.io"
urls.Repository = "https://github.com/gboeing/osmnx"
[project.optional-dependencies]
entropy = ["scipy>=1.5"]
neighbors = ["scikit-learn>=0.23", "scipy>=1.5"]
raster = ["gdal", "rasterio>=1.3"]
visualization = ["matplotlib>=3.5"]
[tool.black]
line_length = 100
[tool.hatch.build]
packages = ["osmnx"]
[tool.hatch.version]
path = "osmnx/_version.py"
[tool.ruff]
cache-dir = "~/.cache/ruff"
exclude = ["build/*"]
ignore = ["E501"]
line-length = 100
select = ["A", "B", "C", "D", "E", "ERA", "F", "I", "W"]
[tool.ruff.isort]
force-single-line = true
[tool.ruff.mccabe]
max-complexity = 15
[tool.ruff.per-file-ignores]
"./docs/conf.py" = ["A001"]
"./osmnx/__init__.py" = ["F401", "F403"]
"./osmnx/_api.py" = ["F401"]
"./tests/test_osmnx.py" = ["E402", "D103", "F841", "I001"]
[tool.ruff.pydocstyle]
convention = "numpy"