-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.36 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "eophis"
version = "1.1.0"
description = "Tools to couple Python and Machine Learning models with Geophysical simulation codes through OASIS."
authors = [ { name="Alexis Barge", email="alexis.barge@proton.me" },
{ name = "Julien Le Sommer", email = "julien.lesommer@univ-grenoble-alpes.fr" },]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["machine-learning", "fortran", "python", "coupling", "geoscientific", "earth-system", "OASIS"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10.4"
dependencies = [
"netcdf4>=1.5.8",
"numpy>=1.21.0",
"f90nml>=1.4.4",
"watermark>=2.4.3",
"mpi4py>=3.1.5",
]
[project.optional-dependencies]
dev = ["pytest", "sphinx", "sphinx-rtd-theme", "myst_parser"]
[external]
build-requires = [
"virtual:compiler/c",
"virtual:compiler/fortran",
]
host-requires = [
"pkg:https://github.com/Unidata/netcdf-c/releases/tag/v4.7.2",
"pkg:https://github.com/Unidata/netcdf-fortran/releases/tag/v4.5.2",
"pkg:https://https://www.open-mpi.org/"
]
[project.urls]
"Homepage" = "https://github.com/meom-group/eophis"
"Bug Tracker" = "https://github.com/meom-group/eophis/issues"
[tool.setuptools]
package-dir = {}