-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (82 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
89 lines (82 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mapchete-hub"
dynamic = ["version"]
requires-python = ">=3.11"
description = "Distributed mapchete processing."
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Joachim Ungar", email = "joachim.ungar@eox.at" },
{ name = "Petr Sevcik", email = "petr.sevcik@eox.at" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"aiohttp",
"bokeh",
"click",
"dask",
"dask-gateway==2025.4.0",
"dask-gateway-server==2025.4.0",
"dask-kubernetes",
"distributed",
"fastapi",
"httpx",
"jupyter-server-proxy",
"kubernetes",
"mapchete[contours,http,s3,vrt]>=2025.11.0",
"mongomock",
"prometheus-client",
"pydantic>=2.0.0",
"pydantic_settings",
"pymongo",
"slack_sdk",
"sqlalchemy",
"uvicorn",
"zarr",
]
[project.optional-dependencies]
test = [
"httpx",
"pytest",
"pytest-cov",
"pytest-env",
"pytest-mongodb",
"requests",
]
[project.scripts]
mhub-manager = "mapchete_hub.cli.manager:main"
mhub-server = "mapchete_hub.cli.server:main"
mhub-worker = "mapchete_hub.cli.worker:main"
[project.urls]
Homepage = "https://github.com/mapchete/mapchete-hub"
[tool.hatch.version]
path = "mapchete_hub/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/mapchete_hub",
]
[tool.pytest.ini_options]
env = [
"MHUB_ENV=testing",
]
mongodb_fixture_dir = "tests"
addopts = [
"--durations=20",
"--verbose",
"--nf",
"--cov=mapchete_hub",
"--cov-report=term-missing:skip-covered",
"--cov-append"
]
testpaths = ["tests"]