-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 742 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 742 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
[project]
authors = [{ name = "Geoff Boeing", email = "boeing@usc.edu" }]
dependencies = [
"jupyterlab==4.4.*",
"osmnx==2.0.*",
"pre-commit==4.3.*",
]
description = "Template for rapidly starting new projects that include data, code, and a LaTeX paper. "
license = "MIT"
license-files = ["LICENSE.txt"]
name = "project-template"
readme = "README.md"
requires-python = "==3.13.*"
version = "0.0.0"
[tool.ruff]
cache-dir = "~/.cache/pre-commit/ruff"
line-length = 100
[tool.ruff.lint]
extend-ignore = ["T201"]
extend-select = ["ALL"]
[tool.ruff.lint.pycodestyle]
max-line-length = 110 # line length + 10% since it isn't a hard upper bound
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.uv]
required-version = "==0.8.*"