-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (40 loc) · 1.09 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
[tool.poetry]
name = "nonlocal_gw"
version = "0.0.1"
description = "Datadriven models for predicting gravity wave fluxes in climate models."
authors = ["amangupta2"]
readme = "README.md"
license = "LICENSE"
keywords = ["non-local", "gravity waves"]
[tool.poetry.dependencies]
python = "^3.10.0"
netCDF4 = "^1.7.2"
numpy = "^1.26.3"
torch = "^2.5.1"
torchaudio = "^2.5.1"
torchvision = "^0.20.1"
xarray = "^2024.10.0"
[tool.poetry.group.develop]
optional = true
[tool.poetry.group.develop.dependencies]
ruff = "^0.7.3"
pre-commit= "^4.0.1"
[project.urls]
homepage = "https://github.com/DataWaveProject/nonlocal_gwfluxes"
repository = "https://github.com/DataWaveProject/nonlocal_gwfluxes.git"
issues = "https://github.com/DataWaveProject/nonlocal_gwfluxes/issues"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
# set inital defaults for ruff (see
# https://docs.astral.sh/ruff/linter/#rule-selection for more info)
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# isort (this will require imports to be sorted)
"I",
]
# ignore warnings for line-length violations (`E501`)
ignore = ["E501"]