-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.04 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
[build-system]
requires = ["setuptools>=59.7", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["AOSCMcoupling"]
[project]
name = "AOSCMcoupling"
version = "0.3"
authors = [
{ name = "Valentina Schueller", email = "[email protected]" },
]
description = "Wrapper to run the EC-Earth AOSCM with varying coupling schemes"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"xarray",
"netCDF4",
"dask",
"ruamel.yaml",
"numpy",
"pandas",
"jinja2",
]
[project.optional-dependencies]
test = ["pytest"]
dev = ["black", "isort", "flake8"]
all = ["aoscm-coupling[dev,test]"]
[project.urls]
"Homepage" = "https://github.com/valentinaschueller/ece-scm-coupling/"
"Bug Tracker" = "https://github.com/valentinaschueller/ece-scm-coupling//issues"
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.isort]
profile = "black"