-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 929 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ansible-modules-hashivault"
version = "5.6.0"
description = "Ansible Modules for Hashicorp Vault"
readme = "README.rst"
license = "MIT"
authors = [
{name = "Terry Howe", email = "terrylhowe@example.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"ansible-core>=2.12.0",
"hvac>=2.1.0",
"requests",
]
[project.urls]
Homepage = "https://github.com/TerryHowe/ansible-modules-hashivault"
[tool.setuptools]
py-modules = [
"ansible.module_utils.hashivault",
"ansible.plugins.lookup.hashivault",
"ansible.plugins.action.hashivault_read_to_file",
"ansible.plugins.action.hashivault_write_from_file",
"ansible.plugins.doc_fragments.hashivault",
]
packages = ["ansible.modules.hashivault"]