-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (31 loc) · 968 Bytes
/
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
[tool.poetry]
name = "ampel-argo-job"
version = "0.9.0"
description = "Ampel jobs with Argo workflows"
authors = ["Jakob van Santen <[email protected]>"]
maintainers = ["Jakob van Santen <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://ampelproject.github.io"
repository = "https://github.com/AmpelProject/Ampel-core"
documentation = "https://ampelproject.github.io/Ampel-core"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Typing :: Typed",
]
packages = [{include = "ampel"}]
include = [
'conf/*/*.json',
'conf/*/*/*.json',
'conf/*/*.yaml',
'conf/*/*/*.yaml',
'conf/*/*.yml',
'conf/*/*/*.yml',
]
[tool.poetry.plugins.cli]
'ajob_Run_argo_schema_file(s)' = 'ampel.cli.ArgoJobCommand'
[tool.poetry.dependencies]
ampel-core = {version = "^0.9.0"}
python = ">=3.10,<3.12"