-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.23 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eopf-stac"
version = "0.12.0"
authors = [
{ name="Mario Winkler", email="[email protected]" }
]
description = "Python tool to create STAC metadata for an EOPF product"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"s3fs",
"pystac >= 1.12.0",
"stactools-sentinel3 >= 0.4.0",
"stactools-sentinel2 >= 0.6.5",
"geojson",
"xarray",
"zarr",
"netCDF4 == 1.7.2",
"footprint-facility"
]
[project.scripts]
eopf-stac = "eopf_stac.main:main"
[project.optional-dependencies]
dev = [
"ruff"
]
test = [
"pytest"
]
[tool.hatch.build.targets.wheel]
packages = ["src/eopf_stac"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-q --import-mode=importlib --no-header -rfE --disable-warnings --log-level=INFO"
testpaths = [
"tests"
]
pythonpath = [
"src/eopf_stac"
]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py311"