-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 956 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/python
from setuptools import setup, find_packages
import os
_version="0.0.1"
long_description=""
### IMPORTANT: Example for distributing ansible modules from
#https://github.com/TerryHowe/ansible-modules-hashivault/blob/master/setup.py
files = [ "ansible/modules/am4g"]
setup(
name='am4g',
version=_version,
packages=files,
scripts=[],
description='Ansible module for GIG based clouds',
long_description=long_description,
long_description_content_type="text/markdown",
author='Kevin Hunyadi',
author_email='[email protected]',
url='',
python_requires= ">=2.7.5",
classifiers=[
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
install_requires=[
'ansible>=2.9.0',
'pc4g>=1.0.0',
],
)