-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
78 lines (69 loc) · 2.18 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bris"
authors = [
{name = "Magnus Sikora Ingstad", email = "magnusi@met.no"},
{name = "Aram Salihi", email = "arams@met.no"},
{name = "Thomas Nipen", email = "thomasn@met.no"},
{name = "Håvard H. Haugen", email = "havardhh@met.no"}
]
description = "Package for running inference of Anemoi models"
keywords = ["meteorology", "forecast", ]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"anemoi-datasets>=0.5.13", # This includes the reorder functionality
"argparse",
"cfunits",
"gridpp",
"hydra-core",
"numpy",
"omegaconf",
"pyproj",
"pytorch-lightning>=2.1",
"scipy",
"torch",
"torch_geometric",
"torchinfo",
"tqdm",
"verif",
"zarr<=2.17",
"anemoi-models",
"anemoi-training>=0.1.0",
]
# legacy version supports this branch from MetNo fork of ECMWF anemoi-models
# contains some optimizations and fixes
optional-dependencies.legacy = [
"anemoi-models @ git+https://github.com/metno/anemoi-models.git@feature/fix-memory-inference-chunking",
"aifs @ git+ssh://git@github.com/metno/aifs-mono.git@production",
]
optional-dependencies.tests = [
"tox",
]
dynamic = ["version"]
[tool.setuptools]
# Any setuptools-specific configuration (e.g., package data, entry points) goes here
include-package-data = true
[tool.setuptools.packages.find]
include = ["bris"]
[tool.setuptools.dynamic]
version = {attr = "bris.__version__"}
[tool.setuptools.package-data]
bris = ["schema/*.json"]
[project.scripts]
bris = "bris:main"