-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (53 loc) · 1.45 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
[tool.poetry]
name = "ansible-vault-rotate"
version = "2.0.0"
description = "Advanced Python CLI to rotate the secret used for ansible vault inline secrets and files in a project"
authors = [
"Timo Reymann <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/trustedshops-public/python-ansible-vault-rotate"
packages = [
{ include = "ansible_vault_rotate" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Environment :: Console",
"Environment :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Framework :: Ansible"
]
exclude = [
"**/*_test.py",
"**/__testdata__/**"
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.9"
ansible-core = "^2.9.0"
inquirerpy = "^0.3.4"
[tool.poetry.scripts]
ansible-vault-rotate = 'ansible_vault_rotate.cli.run:run'
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
coverage = "^7.0.4"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/trustedshops-public/python-ansible-vault-rotate/issues"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/legacy/"
default = false
secondary = false
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "*_test"]
[tool.coverage.report]
fail_under = 70
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"