-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (46 loc) · 1.09 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
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "esa-apex-toolbox"
dynamic = ["version"]
authors = [
{ name="Stefaan Lippens", email="[email protected]" },
]
description = "Python toolbox to interact with ESA APEx"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
keywords = ["ESA", "EO", "Earth observation", "openEO"]
dependencies = [
"requests>=2.30.0",
]
[project.urls]
Homepage = "https://github.com/ESA-APEx/esa-apex-toolbox-python"
Issues = "https://github.com/ESA-APEx/esa-apex-toolbox-python/issues"
[project.optional-dependencies]
tests = [
"pytest>=8.2.0",
"requests_mock>=1.12.0",
]
dev = [
"pytest>=8.2.0",
"requests_mock>=1.12.0",
]
[tool.hatch.version]
path = "src/esa_apex_toolbox/_about.py"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
testpaths = [
"tests",
]