forked from TerryHowe/ansible-modules-hashivault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 778 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
#!/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",
]
files = [
"ansible/modules/hashivault",
]
long_description=open('README.rst', 'r').read()
setup(
name='ansible-modules-hashivault',
version='3.8.6',
description='Ansible Modules for Hashicorp Vault',
long_description=long_description,
author='Terry Howe',
author_email='[email protected]',
url='https://github.com/TerryHowe/ansible-modules-hashivault',
py_modules=py_files,
packages=files,
install_requires = [
'ansible>=2.0.0',
'hvac>=0.3.0',
],
)