-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 714 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
VERSION = '0.0.4'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='aws_session_handler',
packages=find_packages(),
version=VERSION,
description='AWS Session Handler',
long_description_content_type='text/markdown',
long_description=long_description,
keywords='boto3 amazon web services aws authentication',
author='MarioVerbelen',
author_email='mario@verbelen.org',
url='https://github.com/MarioVerbelen/aws_session_handler',
download_url='https://github.com/MarioVerbelen/aws_session_handler',
license='MIT License',
install_requirements=[
'botocore',
'boto3'
])