-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·79 lines (69 loc) · 1.77 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["eomaji"]
[tool.hatch.build.targets.sdist]
exclude = ["notebooks", "tests"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
include = [
"eomaji/static_data/*.csv", # Include CSV file in the package
]
[project]
name = "eomaji"
version = "0.1.0"
description = "A Python package for EOMAJI"
authors = [
{ name="Marie Lund Larsen", email="[email protected]" },
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10,<3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy==1.24.4",
"scikit-learn>=1.5.2",
"pyproj>=3.7.0",
"scipy>=1.14.1",
"openeo>=0.33.0",
"numba==0.57.1",
"pydms @ git+https://github.com/radosuav/[email protected]",
"netcdf4>=1.7.2",
"pypro4sail @ git+https://github.com/hectornieto/[email protected]",
"ipykernel>=6.29.5",
"rioxarray>=0.18.2",
"rasterio>=1.4.3",
"cdsapi>=0.7.5",
"cfgrib>=0.9.15.0",
"pyyaml>=6.0.2",
"pytseb @ git+https://github.com/hectornieto/[email protected]",
"scikit-image>=0.25.1",
"meteo-utils @ git+https://github.com/mariegitter/meteo_utils",
]
[project.optional-dependencies]
dev = [
"build",
"pytest",
"ruff",
]
test= [
"pytest",
]
notebooks = [
"jupyter",
]
[project.urls]
"Homepage" = "https://github.com/DHI/EOMAJI-OpenEO-toolbox"
"Bug Tracker" = "https://github.com/DHI/EOMAJI-OpenEO-toolbox/issues"
[tool.ruff]
# ignore long lines
lint.ignore = ["E501"]