-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 1.22 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
50
51
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ece4-exp"
version = "1.3.2"
authors = [
{ name="Vladimir Lapin", email="[email protected]" },
]
description = "EC-Earth4 experiment configuration tool with YAML overlay system"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
dependencies = [
"ruamel.yaml>=0.17.0",
"jsonschema>=4.0.0",
"argcomplete>=2.0.0",
]
[project.optional-dependencies]
highlight = ["pygments>=2.10.0"]
[project.scripts]
ece4-exp = "ece4_exp.cli:main"
[project.urls]
"Homepage" = "https://github.com/vlap/ece4-exp"
"Bug Tracker" = "https://github.com/vlap/ece4-exp/issues"
"Documentation" = "https://github.com/vlap/ece4-exp/blob/main/README.md"
[tool.setuptools]
packages = ["ece4_exp"]
[tool.setuptools.package-data]
ece4_exp = [
"recipes/*.yml",
"recipes/*.yaml",
"platforms/*.yml",
"platforms/*.yaml"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"