-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
35 lines (33 loc) · 872 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
27
28
29
30
31
32
33
34
35
from setuptools import setup
from aws_assume_role_helper import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='assume',
python_requires='>3.5.2',
version=__version__,
description='Helper to easily assume IAM roles in AWS',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/SanderKnape/assume',
author='Sander Knape',
author_email='[email protected]',
license='MIT',
packages=['aws_assume_role_helper'],
entry_points={
'console_scripts': [
'assume = aws_assume_role_helper.__main__:main'
]
},
install_requires=[
'pyyaml~=4.2b1',
'boto3~=1.5'
],
extras_require={
'dev': [
'flake8',
'pylint'
]
},
zip_safe=False
)