-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.11 KB
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
[project]
name = "map-poster-streamlit"
version = "0.1.0"
description = "Map poster generator using Streamlit"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Miguel Pimentel" }]
keywords = ["map", "poster", "streamlit"]
dependencies = [
"streamlit>=1.28.0",
"osmnx>=2.0.0",
"matplotlib>=3.10.0",
"geopandas>=1.1.0",
"geopy>=2.4.0",
"pillow>=12.0.0",
"requests>=2.31.0",
"numpy>=2.0.0",
"pandas>=2.0.0",
"networkx>=3.6.0",
"shapely>=2.1.0",
"scipy>=1.16.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["core"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = [
"E", # errors
"W", # warnings
"F", # flakes
"I", # isort
"UP", # upgrade
"ARG", # unused-arguments
]
ignore = [
"E501", # line too long
"B008", # no function calls in argument defaults
"W191", # tabs
]
[tool.ruff.lint.per-file-ignores]
"app.py" = ["B008"] # streamlit widget defaults
[dependency-groups]
dev = [
"ruff>=0.15.0",
]