forked from 52North/pygeoapi_k8s-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 798 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
35
36
[project]
name = "pygeoapi-k8s-manager"
version = "0.24"
description = "Job manager for pygeoapi using k8s api server"
readme = "README.md"
license = { text = "Apache Software License 2.0"}
authors = [
{ name = "EHJ-52n", email = "e.h.juerrens@52north.org" },
{ name = "MartinPontius", email = "m.pontius@52north.org" }
]
requires-python = ">=3.12"
dependencies = [
"boto3>=1.38.37",
"botocore>=1.38.37",
"filelock>=3",
"kubernetes>=31,<32",
"pygeoapi==0.23.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.4.0",
"pytest-cov>=6.2.1",
"ruff>=0.11.13",
"time-machine>=2.16.0",
]
docker = [
"boto3>=1.38.37",
"botocore>=1.38.37",
"filelock>=3",
"kubernetes>=31,<32",
]