forked from ansible/awx-custom-credential-plugin-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·28 lines (25 loc) · 783 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
#!/usr/bin/env python
from setuptools import setup
requirements = [boto3] # add Python dependencies here
# e.g., requirements = ["PyYAML"]
setup(
name='awx-custom-credential-plugin-example',
version='0.1',
author='Ansible, Inc.',
author_email='[email protected]',
description='',
long_description='',
license='Apache License 2.0',
keywords='ansible',
url='http://github.com/ansible/awx-custom-credential-plugin-example',
packages=['awx_custom_credential_plugin_example'],
include_package_data=True,
zip_safe=False,
setup_requires=[],
install_requires=requirements,
entry_points = {
'awx.credential_plugins': [
'example_plugin = awx_custom_credential_plugin_example:example_plugin',
]
}
)