-
Notifications
You must be signed in to change notification settings - Fork 555
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (21 loc) · 754 Bytes
/
pyproject.toml
File metadata and controls
26 lines (21 loc) · 754 Bytes
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
[project]
authors = [{ name = "Geoff Boeing", email = "boeing@usc.edu" }]
dependencies = ["osmnx[all]==2.1.0"]
description = "Gallery of OSMnx tutorials, usage examples, and feature demonstrations."
license = "MIT"
license-files = ["LICENSE.txt"]
name = "osmnx-examples"
readme = "README.md"
requires-python = ">=3.11"
version = "2.1.0" # match pinned version above
[project.optional-dependencies]
all = ["folium", "jupyterlab", "mapclassify", "igraph"]
[dependency-groups]
dev = ["nbdime", "pre-commit"]
[tool.ruff]
cache-dir = "~/.cache/pre-commit/ruff"
line-length = 100
[tool.ruff.lint]
extend-select = ["A", "B", "E", "F", "I", "UP", "W"]
[tool.ruff.lint.pycodestyle]
max-line-length = 110 # line length + 10% since it isn't a hard upper bound