-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.1 KB
/
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
from distutils.core import setup
from setuptools import find_packages
setup(name='awsbb',
version='0.0.8',
description='A tool to audit your AWS credentials',
license='MIT',
url='https://github.com/jae2/awsbigbrother',
long_description="A command line app which allows you to check users compliance with various security policies",
install_requires=['click','boto3','arrow','configparser','six'],
packages=find_packages(exclude=['contrib', 'docs', 'test*','venv*','build','dist','.cache','fixtures','.cache']),
author_email='admin@jaetech.org',
author='James Edwards',
entry_points={
'console_scripts': [
'awsbb=awsbigbrother.cli:app',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
)