-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 1.67 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
68
69
70
71
72
73
[tool.poetry]
name = "bfm-model"
version = "0.4.0"
description = "BioAnalyst: A Foundation Model for Biodiversity"
authors = ["Athanasios Trantas", "Martino Mensio", "Sebastian Gribincea"]
readme = "README.md"
# package-mode = false # for now, let's keep poetry just for the goal of requirements management
license = "LICENSE.txt"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
numpy = ">=1.26"
torch = ">=2.7.1"
torchvision = ">=0.22.1"
torchaudio = ">=2.7.1"
mlflow = ">=3.1.1"
einops = ">=0.8.0"
hydra-core = ">=1.3.2"
lightning = ">=2.5.2"
psutil = ">=6.1.1"
pynvml = ">=12.0.0"
fvcore = "0.1.5.post20221221"
timm = ">=1.0.9"
typer = ">=0.15.1"
cartopy = ">=0.24.1"
plotly = ">=5.24.1"
nbformat = ">=5.10.4"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.4"
seaborn = ">=0.13.2"
pandas = ">=2.2.2"
pre-commit = ">=3.7.0"
flake8-pyproject=">=1.2.3" # necessary for flake8 to read pyproject.toml, when executed from pre-commit
torchmetrics = ">=1.4.0"
hydra-core = ">=1.3.2"
scikit-learn = ">=1.5.1"
optuna = ">=4.0.0"
optuna-integration = {version = "^4.0.0", extras = ["pytorch_lightning"]}
fvcore = ">=0.1.5"
openpyxl = ">=3.1.5"
pytorch-forecasting = ">=1.2.0"
xarray = ">=2024.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 130
target-version = ['py310']
include = '\.pyi?$'
force-exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
)/
'''
[tool.flake8]
extend-ignore = ["D203", "E203", "E251", "E266", "E302", "E305", "E401", "E402", "E501", "F401", "F403", "W503"]
exclude = [".git", "__pycache__", "dist", "venv"]
[tool.isort]
atomic = true
profile = "black"
skip_gitignore = true