-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (72 loc) · 1.8 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
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
[project]
name = "geo-cb-surge"
version = "0.0.1"
description = "python tools that facilitate the assessment of natural hazards over various domains like population, landuse, infrastructure, etc"
requires-python = ">=3.12"
authors = [
{ name = 'Ioan Ferencik'},
{ name = 'Joseph Thuha'},
{ name = 'Jin Igarashi'},
{ name = "United Nations Development Programme", email = "[email protected]" }
]
readme = "README.md"
dependencies = [
"httpx",
"osm2geojson",
"shapely",
"h3",
"tqdm",
"GDAL==3.10.0",
"azure-storage-blob",
"overturemaps",
"async",
"aiofiles",
"aiohttp",
"azure-storage-file-share",
"asyncclick",
"rio-cogeo",
"exactextract",
"pycountry",
"click",
"pyarrow",
"azure-core",
"rasterio",
"geopandas",
"azure-identity",
"jupyterhub",
"jupyterlab",
"notebook",
"dockerspawner",
"pytest",
"rich",
"morecantile",
"mapbox_vector_tile",
"aiopmtiles @ git+https://github.com/developmentseed/aiopmtiles"
]
[project.scripts]
rapida = "cbsurge.cli:cli"
[project.urls]
Homepage = "https://github.com/UNDP-Data/geo-cb-surge"
Documentation = "https://github.com/UNDP-Data/geo-cb-surge"
Repository = "https://github.com:UNDP-Data/geo-cb-surge.git"
Issues = "https://github.com/UNDP-Data/geo-cb-surge/issues"
#Changelog = "https://github.com/UNDP-Data/geo-cb-surge/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["cbsurge"]
[tool.hatch.build.targets.sdist]
exclude = [
".devcontainer",
".github",
".dockerignore",
"docker-compose.yml",
"Dockerfile",
".gitignore",
".pre-commit-config.yaml",
"tests",
"Makefile"
]
[tool.hatch.metadata]
allow-direct-references = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"