forked from GESkunkworks/cert-pruner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 832 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 832 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
from setuptools import setup, find_packages
setup(
name='cert-pruner',
description='Prune IAM Server Certificates that are not attached to an ELB',
keywords='certificate cert prune delete iam aws',
url='https://github.com/GESkunkworks/cert-pruner',
use_scm_version=True,
author='Michael Palmer',
author_email='github@michaeldpalmer.com',
packages=find_packages(),
setup_requires=['setuptools_scm~=3.1.0'],
install_requires=[
'boto3~=1.7.16',
'pytz~=2018.4'
],
entry_points={
'console_scripts': [
'cert-pruner = cert_pruner.cli:main',
],
},
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
'Topic :: Utilities'
]
)