-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 2.05 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mapchete-hub-cli"
dynamic = ["version"]
requires-python = ">=3.11"
description = "CLI and Python bindings to mapchete Hub API."
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 = [
"click",
"click_spinner",
"click_plugins",
"python-dateutil",
"oyaml",
"pydantic",
"requests",
"tqdm",
]
[project.optional-dependencies]
zones = [
"mapchete",
]
test = [
"mapchete_hub>=2023.12.0",
"pytest",
"pytest-cov",
"pytest-env",
"requests",
]
[project.scripts]
mhub = "mapchete_hub_cli.cli.main:mhub"
[project.entry-points."mapchete_hub_cli.cli.commands"]
cancel = "mapchete_hub_cli.cli.cancel:cancel"
clean = "mapchete_hub_cli.cli.clean:clean"
execute = "mapchete_hub_cli.cli.execute:execute"
job = "mapchete_hub_cli.cli.job:job"
jobs = "mapchete_hub_cli.cli.jobs:jobs"
processes = "mapchete_hub_cli.cli.processes:processes"
progress = "mapchete_hub_cli.cli.progress:progress"
show_remote_version = "mapchete_hub_cli.cli.show_remote_version:show_remote_version"
retry = "mapchete_hub_cli.cli.retry:retry"
test-run = "mapchete_hub_cli.cli.test:test_run"
[project.urls]
Homepage = "https://github.com/mapchete/mapchete-hub-cli"
[tool.hatch.version]
path = "src/mapchete_hub_cli/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[tool.pytest.ini_options]
env = [
"MHUB_ENV=testing",
]
addopts = [
"--durations=20",
"--verbose",
"--nf",
"--cov=mapchete_hub_cli",
"--cov-report=term-missing:skip-covered",
"--cov-append"
]
testpaths = ["tests"]