Skip to content

Commit

Permalink
update project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
snigdhasjg committed Nov 7, 2023
1 parent 58049af commit f54e0d9
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 7 deletions.
1 change: 0 additions & 1 deletion aws_console/__init__.py

This file was deleted.

21 changes: 15 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,38 @@ def find_version(*file_paths):

setup(
name='aws_console',
version=find_version("aws_console", "__init__.py"),
version=find_version('src', '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(),
packages=find_packages('src'),
entry_points={
'console_scripts': [
'aws-console = aws_console.main:main'
'aws-console = aws_console.aws_console:main'
]
},
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'
],
)
1 change: 1 addition & 0 deletions src/aws_console/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.3'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f54e0d9

Please sign in to comment.