-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
96 lines (84 loc) · 2.47 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
95
96
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ansible-variables"
version = "0.8.1"
dependencies = [
"ansible-core >=2.11.0; python_version <= '3.9'",
"ansible-core >=2.12.0,<8; python_version == '3.10'",
"ansible-core >=2.14.0,<8; python_version == '3.11'",
"ansible-core >=2.16.0,<8; python_version == '3.12'",
"rich",
]
requires-python = ">=3.8,<3.13"
authors = [
{"name" = "Christoph Hille", "email" = "hille721@gmail.com"}
]
description = "Keep track of Ansible host context variables"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/hille721/ansible-variables"
Documentation = "https://github.com/hille721/ansible-variables/blob/main/README.md"
Repository = "https://github.com/hille721/ansible-variables.git"
"Bug Tracker" = "https://github.com/hille721/ansible-variables/issues"
Changelog = "https://github.com/hille721/ansible-variables/blob/master/CHANGELOG.md"
[project.scripts]
ansible-variables = "ansible_variables.cli.variables:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["lib"]
exclude = ["tests"]
[tool.black]
line-length = 120
[tool.pylint.format]
max-line-length = 120
[tool.pylint."message control"]
disable= ["C", "R"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I",
# pylint
"PLE", "PLW"
]
[tool.ruff.lint.isort]
known-first-party = ["ansible_variables"]
[tool.uv]
dev-dependencies = [
"mdformat>=0.7.17",
"pylint>=3.2.7",
"pytest >=8.1.1,<9",
"ruff>=0.6.5",
"tox-uv>=1.11.3",
"tox>=4.18.1",
]