-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 948 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 948 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
35
36
37
38
39
40
41
42
43
44
[project]
name = "dash-leaflet"
version = "1.1.3"
description = "Dash Leaflet is a light wrapper around React-Leaflet. The syntax is similar to other Dash components, with naming conventions following the React-Leaflet API."
authors = [
{ name = "emher", email = "emil.h.eriksen@gmail.com" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"dash>=3.0.0",
"dash-extensions>=2.0.0",
"dash_svg",
"protobuf>=6.30.2",
"geobuf>=2.0.0",
"pyyaml",
"colorcet",
]
[project.urls]
homepage = "https://dash-leaflet.com"
repository = "https://github.com/emilhe/dash-leaflet"
[dependency-groups]
dev = [
"dash[dev, testing]>=3.0.0",
"pytest-cov>=6.0.0",
"requests>=2.32.2",
"ruff>=0.11.0",
"tomli>=2.2.1",
"tomli-w>=1.2.0",
"selenium>=4.2.0",
"wheel>=0.45.1",
]
[tool.uv]
default-groups = [
"dev",
]
[tool.ruff]
line-length = 120
target-version = "py312"