-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
40 lines (37 loc) · 1.06 KB
/
pyproject.toml
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
[tool.poetry]
name = "mapa"
version = "0.13.0"
description = "🌍 Create 3d-printable STLs from satellite elevation data 🌏"
authors = ["Fabian Gebhart"]
repository = "https://github.com/fgebhart/mapa"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
click = "^8.1.3"
numpy = "^1.23"
numba = "^0.56.4"
notebook = "^6.5.3"
ipyleaflet = "0.13.3" # pinned since newer versions use questionable edit feature for rectangles
pystac-client = "^0.8.5"
rasterio = "^1.3.6"
haversine = "^2.8.0"
numpy-stl = "^3.0.1"
geojson = "^3.0.1"
planetary-computer = "^1.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
ipython = "^8.10.0"
ipdb = "^0.13.9"
pre-commit = "^3.2.1"
[tool.poetry.scripts]
dem2stl = "mapa.cli:dem2stl"
mapa = "mapa.cli:mapa"