generated from jejjohnson/ml_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
82 lines (64 loc) · 1.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[tool.poetry]
name = "oceanbench"
version = "0.0.1"
description = "Pre-, Geo-, and ML processing for ocean applactions."
authors = ["Juan Emmanuel Johnson <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/jejjohnson/oceanbench"
keywords = ["xarray", "sea-surface-height", "ocean", "benchmark"]
classifiers = [
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Operating System :: MACOS/Linux",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Development Status :: 2 - Pre-Alpha copy",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
ocn-tools = { git = "https://github.com/jejjohnson/ocn-tools.git" }
dvc = "^2.55.0"
xrpatcher = "^0.0.1"
rootutils = "^1.0.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
pre-commit = "^3.2.2"
beartype = "^0.13.1"
ruff = "^0.0.263"
black = "^23.3.0"
isort = "^5.12.0"
[tool.poetry.group.exp.dependencies]
wandb = "^0.15.0"
loguru = "^0.7.0"
hydra-core = "^1.3.2"
matplotlib = "^3.7.1"
seaborn = "^0.12.2"
autoroot = "^1.0.0"
[tool.poetry.group.jlab.dependencies]
ipykernel = "^6.22.0"
autoroot = "^1.0.0"
[tool.poetry.group.jbook.dependencies]
jupyter-book = "^0.15.1"
ghp-import = "^2.1.0"
sphinx-proof = "^0.1.3"
jupytext = "^1.14.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["oceanbench"]
[tool.ruff]
select = ["E", "F", "I001"]
ignore = ["E402", "E721", "E731", "E741", "F722", "F821"]
ignore-init-module-imports = true
[tool.ruff.isort]
combine-as-imports = true
lines-after-imports = 2
extra-standard-library = ["typing_extensions"]
order-by-type = false