-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.07 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "actinia-api"
version = "3.6.0"
description = "API description for actinia-core and official plugins."
readme = "README.md"
authors = [
{ name = "Anika Weinmann"},
{ name = "Carmen Tawalika"},
{ name = "Julia Haas"},
{ name = "Markus Metz"},
{ name = "Markus Neteler"},
{ name = "Stefan Blumentrath"},
{ name = "Sören Gebbert"}
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
keywords = ["processing", "earth observation", "grass gis"]
dependencies = [
"flask-restful-swagger-2"
]
[project.optional-dependencies]
test = [
"setuptools",
"pytest",
"ytest-cov"
]
[project.urls]
Homepage = "https://github.com/mundialis/actinia-api"
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 = 88