-
Notifications
You must be signed in to change notification settings - Fork 0
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
58049af
commit 30a3012
Showing
3 changed files
with
30 additions
and
22 deletions.
There are no files selected for viewing
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 +1,16 @@ | ||
__version__ = '0.2.0' | ||
from .input_output.cli import parse_arguments | ||
from .input_output.browser import open_console | ||
|
||
from .credentials import aws_credentials | ||
from .aws_console_login import signin_url | ||
|
||
__version__ = '0.3' | ||
|
||
|
||
def aws_console(): | ||
args = parse_arguments() | ||
|
||
creds, region_name = aws_credentials(args) | ||
url = signin_url(creds, region_name) | ||
|
||
open_console(url, args) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,29 +21,38 @@ def find_version(*file_paths): | |
|
||
setup( | ||
name='aws_console', | ||
version=find_version("aws_console", "__init__.py"), | ||
version=find_version('aws_console', '__init__.py'), | ||
description='AWS Console Login Utility', | ||
keywords = [ | ||
'aws', | ||
'aws-sdk', | ||
'aws-cli', | ||
'aws-authentication', | ||
'aws-sdk-python', | ||
'aws-auth' | ||
], | ||
long_description=read("README.md"), | ||
packages=find_packages(), | ||
entry_points={ | ||
'console_scripts': [ | ||
'aws-console = aws_console.main:main' | ||
'aws-console = aws_console:aws_console' | ||
] | ||
}, | ||
install_requires=[ | ||
'boto3>=1.28', | ||
'pyperclip>=1.8,<1.9' | ||
], | ||
author='Snigdhajyoti Ghosh', | ||
author_email='[email protected]', | ||
url='https://github.com/snigdhasjg/aws-console', | ||
license="MIT License", | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: MIT License', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Operating System :: MacOS', | ||
'Operating System :: POSIX :: Linux', | ||
'Development Status :: 4 - Beta' | ||
'Operating System :: OS Independent', | ||
'Development Status :: 5 - Production/Stable', | ||
'Topic :: Utilities' | ||
], | ||
) |