-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (74 loc) · 1.36 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "streamlit-folium"
version = "0.27.2"
description = "Render Folium objects in Streamlit"
readme = "README.md"
authors = [{ name = "Randy Zwitch", email = "rzwitch@gmail.com" }]
requires-python = ">=3.11"
dependencies = [
"streamlit>=1.13.0",
"folium>=0.13,!=0.15.0",
"jinja2",
"branca",
]
[build-system]
requires = ["uv_build>=0.8.4,<0.9"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = "."
source-include = [
"README.md",
"LICENSE"
]
source-exclude = [
"streamlit_folium/frontend/node_modules/**/*",
"streamlit_folium/frontend/src/**/*"
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = ["B008", "ISC001", "E501", "W191", "B018"]
select = [
"B",
"E",
"F",
"W",
"I",
"N",
"C4",
"EXE",
"ISC",
"ICN",
"PIE",
"PT",
"RET",
"SIM",
"ERA",
"PLC",
"RUF",
"ARG",
]
[tool.mypy]
files = ["**/*.py"]
follow_imports = "silent"
ignore_missing_imports = true
scripts_are_modules = true
python_version = "3.11"
[dependency-groups]
dev = [
"ruff",
"mypy",
"pre-commit",
]
test = [
"pyproj>=3.7.2",
"pyogrio>=0.12.1",
"shapely>=2.1.2",
"pyarrow>=23.0.1",
"folium>=0.13,!=0.15.0",
"geopandas>=1.0.1",
"pytest>=7.1.2",
"pytest-playwright>=0.7.0",
"pytest-rerunfailures>=15.1",
"streamlit>=1.13.0,!=1.34.0",
]