-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 785 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 785 Bytes
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", "botocore"] # add Python dependencies here
# e.g., requirements = ["PyYAML"]
setup(
name='aws_role_credential_plugin',
version='0.1',
author='Derek Waters',
author_email='dwaters@redhat.com',
description='',
long_description='',
license='Apache License 2.0',
keywords='ansible',
url='http://github.com/derekwaters/aws_role_credential_plugin',
packages=['aws_role_credential_plugin'],
include_package_data=True,
zip_safe=False,
setup_requires=[],
install_requires=requirements,
entry_points = {
'awx.credential_plugins': [
'aws_role_credential_plugin = aws_role_credential_plugin:aws_role_credential_plugin',
]
}
)