-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 1.55 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "actinia-parallel-plugin"
version = "1.1.2"
description = "An actinia-core plugin which adds parallel processing endpoints to actinia-core"
readme = "README.md"
authors = [
{ name = "Anika Weinmann"},
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
keywords = [
"processing",
"earth observation",
"cloud-based processing",
"rest api",
"gis",
"grass gis",
"osgeo",
"parallel",
]
dependencies = [
"actinia-rest-lib",
"colorlog>=4.2.1",
"jsonmodels",
"peewee",
"playhouse",
"psycopg2",
"python-json-logger",
"yoyo-migrations",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
[project.urls]
Homepage = "https://github.com/mundialis/actinia-parallel-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.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov actinia_parallel_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",
]