-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.08 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
[project]
name = "ial_build"
dynamic = ["version"]
description = "IAL-build: Tools for Source Code Management and build of IAL code."
readme = "README.md"
requires-python = ">=3.10"
keywords = []
license = {text = "CECILL-C"}
authors = [
{ name = "Alexandre Mary" , email = "[email protected]"}
]
dependencies = [
"ecbundle @ git+https://github.com/ecmwf/ecbundle#egg=2.1.1",
]
[project.urls]
source = "https://github.com/ACCORD-NWP/IAL-build.git"
tracker = "https://github.com/ACCORD-NWP/IAL-build/issues"
[project.scripts]
ial-fork_point = "ial_build.cli.fork_point:main"
ial-bundle2pack = "ial_build.cli.bundle2pack:main"
ial-git2pack = "ial_build.cli.git2pack:main"
ial-find_bundle = "ial_build.cli.find_bundle:main"
ial-get_bundle = "ial_build.cli.get_bundle:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-dir]
ial_build = "src/ial_build"
[tool.setuptools.package-data]
ial_build = [
"conf/gmkpack/sources_filters/*.txt",
]
[tool.setuptools.dynamic]
version = {attr = "ial_build.__version__"}