-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (25 loc) · 891 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='AWSLeR',
author='Forest Monsen',
author_email='[email protected]',
install_requires=['boto3', 'docopt'],
long_description=open('README.md').read(),
packages=find_packages(exclude=['docs', 'tests']),
url='https://github.com/forestmonster/AWSLeR',
license='Apache 2.0',
version='0.3',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
)