-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 907 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 907 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
27
28
29
30
31
32
33
34
[project]
authors = [{ name = "Geoff Boeing", email = "boeing@usc.edu" }]
dependencies = [ # pin to minor versions pre-installed on Colab
"folium==0.20.*",
"geopy==2.4.*",
"mapclassify==2.10.*",
"osmnx[all]==2.0.*",
"seaborn==0.13.*",
"statsmodels==0.14.*",
]
description = "USC PPD430: Urban Informatics"
license = "MIT"
license-files = ["LICENSE.txt"]
name = "PPD430"
readme = "README.md"
requires-python = "==3.13.*"
version = "2025"
[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.per-file-ignores]
# allow intentional errors in bootcamp lecture
"modules/03-coding-bootcamp-i/lecture.ipynb" = ["B018", "F821"]
[tool.ruff.lint.pycodestyle]
max-line-length = 110 # line length + 10% since it isn't a hard upper bound