-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (78 loc) · 1.58 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/dist",
"/notebooks",
"/scripts",
"/bin",
"/tests",
]
[project]
name = "openeo_gfmap"
version = "0.3.0a1"
authors = [
{ name="Darius Couchard" },
{ name="Vincent Verelst" },
{ name="Kristof Van Tricht" },
{ name="Stefaan Lippens" },
{ name="Jeroen Degerickx" },
]
description = "OpenEO General Framework for Mapping"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy<2.0.0",
"geojson>=3.0.0",
"geopandas",
"h5netcdf>=1.2.0",
"openeo",
"onnxruntime",
"cftime",
"pyarrow",
"fastparquet",
"h3==4.1.0",
"netCDF4",
"scipy",
"rasterio",
]
[project.urls]
"Homepage" = "https://github.com/Open-EO/openeo-gfmap"
"Bug Tracker" = "https://github.com/Open-EO/openeo-gfmap/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"matplotlib>=3.3.0",
"xarray>=2022.3.0",
"rioxarray>=0.13.0",
"pytest-depends",
"pytest-timeout>=2.2.0",
"pre-commit",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
addopts = [
"--verbose",
"--import-mode=prepend",
"--log-cli-level=INFO",
"--timeout=900",
]
junit_logging = "log" # Include logging output in JUnit XML report
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.ruff]
# line-length = 88
[tool.ruff.lint]
select = ["E", "F"]
ignore = [
"E501", # Ignore "line-too-long" issues, let black handle that.
]