-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8394647
commit bd8827c
Showing
11 changed files
with
34 additions
and
159 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# ensure absolute import for python3 | ||
from __future__ import absolute_import | ||
|
||
import copy | ||
import time | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,15 @@ | ||
""" | ||
Aardvark | ||
===== | ||
Multi-Account AWS IAM Access Advisor API | ||
:copyright: (c) 2017 by Netflix | ||
:license: Apache, see LICENSE for more details. | ||
""" | ||
from __future__ import absolute_import | ||
|
||
from pathlib import Path | ||
|
||
from setuptools import setup, find_packages | ||
|
||
from aardvark import __about__ | ||
|
||
this_directory = Path(__file__).parent | ||
long_description = (this_directory / "README.md").read_text() | ||
|
||
install_requires = [ | ||
'requests', | ||
'better_exceptions', | ||
'blinker', | ||
'Bunch', | ||
'Flask-SQLAlchemy>=2.5', | ||
'cloudaux>=1.8.0', | ||
'Flask', | ||
'Jinja2', | ||
'Flask-RESTful', | ||
'Flask-Script', | ||
'flasgger', | ||
'gunicorn', | ||
'itsdangerous', | ||
'psycopg2-binary', | ||
'pytz', | ||
'swag-client', | ||
'tqdm', | ||
] | ||
|
||
tests_require = [ | ||
'pexpect>=4.2.1' | ||
] | ||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name=__about__.__title__, | ||
version=__about__.__version__, | ||
author=__about__.__author__, | ||
author_email=__about__.__email__, | ||
url=__about__.__uri__, | ||
description=__about__.__summary__, | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=install_requires, | ||
name="aardvark", | ||
author="Patrick Kelley, Travis McPeak, Patrick Sanders", | ||
author_email="[email protected]", | ||
url="https://github.com/Netflix-Skunkworks/aardvark", | ||
setup_requires="setupmeta", | ||
versioning="dev", | ||
extras_require={ | ||
'tests': tests_require, | ||
'tests': ['pexpect>=4.2.1'], | ||
}, | ||
entry_points={ | ||
'console_scripts': [ | ||
|