-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (31 loc) · 878 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='iamer',
version='0.1.4',
description='AWS IAM dump and load tool',
url='https://github.com/percolate/iamer',
author='Laurent Raufaste',
author_email='[email protected]',
license='GPLv3',
keywords='aws iam boto',
packages=['iamer'],
install_requires=[
'boto',
'docopt'
],
entry_points={
'console_scripts': [
'iamer=iamer.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"
]
)