-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
33 lines (31 loc) · 1001 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
from setuptools import setup
setup(
name='ec2-security-groups-dumper',
version='1.9.2',
description='AWS EC2 Security Groups dump tool',
url='https://github.com/percolate/ec2-security-groups-dumper',
author='Laurent Raufaste',
author_email='[email protected]',
license='GPLv3',
keywords='aws ec2 firewall boto3',
packages=['ec2_security_groups_dumper'],
install_requires=[
'boto3',
'docopt'
],
entry_points={
'console_scripts': [
'ec2-security-groups-dumper=ec2_security_groups_dumper.main:main'
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: System :: Systems Administration"
]
)