forked from TerryHowe/ansible-modules-hashivault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 895 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='4.7.0',
description='Ansible Modules for Hashicorp Vault',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Terry Howe',
author_email='terrylhowe@example.com',
url='https://github.com/TerryHowe/ansible-modules-hashivault',
py_modules=py_files,
packages=files,
install_requires=[
'ansible>=4.0.0',
'hvac>=0.11.2',
'requests',
],
)