-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
94 lines (85 loc) · 2.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Copyright 2018 Red Hat Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[tool.poetry]
name = "yacfg"
version = "0.10.0"
description = "Template based configuration files generator based on jinja2 and yaml."
authors = ["Zdenek Kraus <[email protected]>", "Dominik Lenosi <[email protected]>"]
maintainers = ["Dominik Lenosi <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/rh-messaging-qe/yacfg"
documentation = "https://rh-messaging-qe.github.io/yacfg/"
repository = "https://github.com/rh-messaging-qe/yacfg.git"
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration',
'Topic :: Text Processing',
'Topic :: Utilities'
]
packages = [
{ include = "yacfg", from = "src" },
{ include = "yacfg_batch", from = "src" },
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rh-messaging-qe/yacfg/issues"
[tool.poetry.dependencies]
python = "^3.8.1"
jinja2 = "^3.1.2"
PyYAML = "^6.0"
colorlog = { version = ">=5.0.1,<7.0.0", optional = true }
colorama = { version = "^0.4.4", optional = true }
importlib-metadata = { version = "<4.8.1", python = "<3.8" }
jinja2-ansible-filters = "^1.3.2"
ruamel-yaml = "^0.17.32"
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
flake8 = "^7.0.0"
mypy = "^1.9"
mock = "^5.1.0"
tox = "^4.14.2"
coverage = "^7.5"
yamllint = "^1.35.1"
pre-commit = "^3.5.0"
jupyter-book = "^0.15.1"
types-Jinja2 = "^2.11.9"
types-PyYAML = "^6.0.12"
black = "^24.4"
[tool.poetry.extras]
color_log = ["colorama", "colorlog"]
[tool.poetry.scripts]
yacfg = 'yacfg.cli.yacfg_cli:main'
yacfg-batch = 'yacfg_batch.yacfg_batch_cli:main'
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"