-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "eo_insights"
version = "0.0.1"
authors = [
{ name="Caitlin Adams", email="[email protected]" },
{ name="Madeleine Seehaber", email="[email protected]" }
]
description = "Tools to support analysis of Earth observation data."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"black>=24.4.2",
"boto3>=1.34.132",
"dask[diagnostics]>=2024.5.2",
"dask-image>=2024.5.3",
"geopandas>=0.14.4",
"ipykernel>=6.29.4",
"matplotlib>=3.9.0",
"mypy>=1.10.0",
"odc-stac>=0.3.9",
"pylint>=3.2.2",
"pystac-client>=0.8.2",
"rasterstats>=0.19.0",
"scikit-image>=0.23.2",
"scikit-learn>=1.5.0",
]
[project.optional-dependencies]
notebooks = [
"folium>=0.17.0",
"mapclassify>=2.6.1",
]
[project.urls]
Homepage = "https://github.com/frontiersi/eo-insights"
Issues = "https://github.com/frontiersi/eo-insights/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
eo_insights = ["py.typed", "dataset_configuration/*.toml"]