-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.37 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
[tool.poetry]
name = "maplibre"
version = "0.3.6"
description = "Python bindings for MapLibre GL JS"
authors = ["Stefan Kuethe <stefan.kuethe@eoda.de>"]
readme = "README.md"
license = "MIT"
include = [{ path = "srcjs", format = ["sdist", "wheel"] }]
[tool.poetry.dependencies]
python = ">=3.9,<4"
shiny = { version = ">0.7.0", optional = true }
htmltools = { version = ">=0.5.1", optional = true }
jinja2 = ">=3.1.6"
pydantic = ">=2.5.3"
pandas = { version = "^2.1.4", optional = true }
geopandas = { version = "^0.14.2", optional = true }
branca = "*"
anywidget = { version = ">=0.9.0", optional = true }
traitlets = { version = "*", optional = true }
pmtiles = { version = "*", optional = true }
eval-type-backport = "*"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
pytest = "^7.4.3"
mkdocs = "^1.5.3"
mkdocstrings = { extras = ["python"], version = "^0.24.0" }
mkdocs-material = "^9.5.3"
geopandas = "^0.14.2"
pmtiles = "*"
marimo = "^0.10.17"
griffe = "0.44.0"
requests = "^2.32.3"
[tool.poetry.extras]
all = [
"pandas",
"geopandas",
"anywidget",
"traitlets",
"shiny",
"htmltools",
"pmtiles",
]
shiny = ["shiny", "htmltools"]
ipywidget = ["anywidget", "traitlets"]
anywidget = ["anywidget", "traitlets"]
pmtiles = ["pmtiles"]
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"