-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.22 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
[project]
name = "davai"
dynamic = ["version"]
description = "Davai environment: commandlines for running DAVAI-tests experiments."
readme = "README.md"
requires-python = ">=3.7"
keywords = []
license = {text = "CECILL-C"}
authors = [
{ name = "Alexandre Mary" , email = "[email protected]"}
]
dependencies=[
"pyyaml",
]
[project.urls]
source = "https://github.com/ACCORD-NWP/DAVAI-env.git"
tracker = "https://github.com/ACCORD-NWP/DAVAI-env/issues"
[project.scripts]
davai-build = "davai.cli.build:main"
davai-ciboulai_init = "davai.cli.ciboulai_init:main"
davai-config = "davai.cli.config:main"
davai-cwd_is_xp = "davai.cli.cwd_is_xp:main"
davai-new_xp = "davai.cli.new_xp:main"
davai-new_xp_from_bundle = "davai.cli.new_xp_from_bundle:main"
davai-run_tests = "davai.cli.run_tests:main"
davai-run_xp = "davai.cli.run_xp:main"
davai-shelf = "davai.cli.shelf:main"
davai-tests_version = "davai.cli.tests_version:main"
davai-xp_status = "davai.cli.xp_status:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
davai = "src/davai_env"
[tool.setuptools.package-data]
"davai" = ["conf/*.ini"]
[tool.setuptools.dynamic]
version = {attr = "davai.__version__"}