-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.41 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
[tool.poetry]
name = "beak"
version = "0.0.0"
description = "Integration of Beak algorithms for CriticalMAAS"
authors = ["Beak Consultants GmbH <[email protected]>"]
readme = "README.md"
packages = [
{include = "beak", from = "src"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: GPL-3.0",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
pip = ">24.0.0"
numpy = "1.26.2"
pandas = "2.1.0"
matplotlib = "3.7.2"
seaborn = "0.12.2"
scikit-learn = "1.3.0"
scipy = "1.11.2"
imbalanced-learn = "0.11.0"
rasterio = "1.3.8"
geopandas = ">=1.0.0"
fiona = ">=1.8.22,<2.0.0"
shapely = ">=2.0.2"
tqdm = ">=4.65.0"
pyarrow = "14.0.1"
tensorflow = "2.14.0"
tensorflow-probability = "0.22.1"
cdr_schemas = { git = "https://github.com/DARPA-CRITICALMAAS/cdr_schemas.git", tag = "v0.4.8" }
cdrc = ">=0.1.15"
[tool.poetry.group.ide.dependencies]
notebook = ">=7.0.0"
ipykernel = ">=6.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
sphinx = ">=8.0.0"
sphinx-rtd-theme = ">=3.0.0"
myst_parser = ">=4.0.0"
autoflake = ">=2.2.1"
pip-licenses = ">=4.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"