-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 979 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
requirements = ['pysafeguard'] # add Python dependencies here
# e.g., requirements = ["PyYAML"]
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='safeguardcredentialtype',
version='0.9.0',
author='One Identity, Llc.',
author_email='brad.nicholes@oneidentity.com',
description='One Identity Safeguard Credential Type plugin for Ansible',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0',
keywords='ansible, One Identity',
url='http://oneidentity.com',
packages=['safeguardcredentialtype'],
include_package_data=True,
zip_safe=False,
setup_requires=[],
install_requires=requirements,
entry_points = {
'awx.credential_plugins': [
'spp_plugin = safeguardcredentialtype:spp_plugin',
]
}
)