-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (57 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
67 lines (57 loc) · 1.26 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
63
64
65
66
67
[project]
name="alpha-bhu"
version = "0.1.0"
description = "AlphaEarth Foundations embeddings clustering and classification for Auroville land use"
requires-python=">=3.12"
dependencies = [
"altair>=5.5.0",
"colorcet>=3.1.0",
"faiss-cpu>=1.12.0",
"fastcore>=1.8.8",
"geopandas>=1.1.1",
"ipyleaflet>=0.20.0",
"jaxtyping>=0.3.2",
"numpy>=2.3.2",
"pillow>=11.3.0",
"polars>=1.32.3",
"rasterio>=1.4.3",
"scikit-learn>=1.7.1",
"shapely>=2.1.1",
]
[project.optional-dependencies]
dev = [
"alpha-bhu",
"blacken-docs>=1.19.1",
"jupyter>=1.1.1",
"jupyterlab>=4.4.6",
"jupytext>=1.17.2",
"mypy>=1.17.1",
"nbdev>=2.4.5",
"ruff>=0.12.10",
"typeguard>=4.4.4",
]
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.jupytext]
formats = "ipynb,md"
[tool.nbdev]
doc_path = "_docs"
lib_path = "alpha_bhu"
tst_flags = "notest"
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.uv]
package = true
[tool.uv.workspace]
members = ["."]
[tool.uv.sources]
alpha-bhu = { workspace = true }