-
Notifications
You must be signed in to change notification settings - Fork 157
/
setup.py
33 lines (30 loc) · 900 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
py_files = [
"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",
]
files = [
"ansible/modules/hashivault",
]
long_description = open('README.rst', 'r').read()
setup(
name='ansible-modules-hashivault',
version='5.3.0',
description='Ansible Modules for Hashicorp Vault',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Terry Howe',
author_email='[email protected]',
url='https://github.com/TerryHowe/ansible-modules-hashivault',
py_modules=py_files,
packages=files,
install_requires=[
'ansible-core>=2.12.0',
'hvac>=2.1.0',
'requests',
],
)