-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 870 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 870 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
[tool.poetry]
name = "streamlit-hexviz"
version = "0.2.0"
description = "Simple H3, S2 and A5 map visualizations for Streamlit"
authors = ["Robert Ziegltrum <robert.ziegltrum@googlemail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/Robert-Ziegltrum/streamlit-hexviz"
keywords = ["streamlit", "h3", "s2", "a5", "geospatial", "pydeck", "visualization"]
packages = [{ include = "streamlit_hexviz" }]
[tool.poetry.dependencies]
python = "^3.9"
streamlit = "^1.28"
h3 = "^4.0"
pydeck = "^0.9.2"
numpy = "*"
pandas = "*"
# Optional dependencies
s2geometry = { version = "^0.9", optional = true }
pya5 = { version = "^0.9", optional = true }
[tool.poetry.extras]
s2 = ["s2geometry"]
a5 = ["pya5"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"