-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.49 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "actinia-ogc-api-processes-plugin"
version = "1.0.0"
description = "An actinia-core plugin which adds OGC API Processes support to actinia-core"
readme = "README.md"
authors = [
{ name = "Carmen Tawalika"},
{ name = "Anika Weinmann"},
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
keywords = [
"processing",
"earth observation",
"cloud-based processing",
"rest api",
"gis",
"grass gis",
"osgeo",
"ogc-api-processes"
]
dependencies = [
"Flask",
"Flask-Cors>=3.0.3",
"flask-restful-swagger-2>=0.35",
"colorlog>=3.1.4",
"python-json-logger",
"requests>=2.20.0",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
[project.urls]
Homepage = "https://github.com/mundialis/actinia-ogc-api-processes-plugin"
Tutorial = "https://mundialis.github.io/actinia_core"
API_Docs = "https://redocly.github.io/redoc/?url=https://actinia.mundialis.de/latest/swagger.json"
[tool.flake8]
max-line-length = 79
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov actinia_ogc_api_processes_plugin --cov-report term-missing --verbose --tb=line -x -s"
testpaths = [
"tests",
]
markers = [
"dev: test current in development",
"unittest: completely independent test",
"integrationtest: integration test",
]