forked from DHI-GRAS/efast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 854 Bytes
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "efast"
authors = [
{name = "sa", email = "smth@email.com"},
]
description = "Implementation of the EFAST Sentinel-2/3 fusion algorithm"
readme = "README.md"
dynamic = ["version"]
requires-python = ">= 3.10, < 3.12"
dependencies = [
"python-dateutil",
"numpy",
"pandas",
"rasterio",
"scipy",
"tqdm",
"pyproj",
"shapely",
"astropy",
"snap-graph@git+https://github.com/DHI-GRAS/snap-graph",
"creodias-finder@git+https://github.com/DHI-GRAS/creodias-finder",
]
[project.optional-dependencies]
dev = [
"ruff",
]
[tool.setuptools.packages.find]
include = ["efast"]
[tool.ruff.lint]
select = ["I"]
[tool.ruff.lint.isort]
# Use a single line between direct and from import.
lines-between-types = 1