-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 944 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 944 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
25
26
27
28
# coding=utf-8
from setuptools import setup
setup(
name="aws-mfa-login",
version="1.0.1",
packages=['wrapp', 'wrapp.aws'],
author="Joakim Lundborg, Fredrik Håård",
author_email="joakim.lundborg@wrapp.com, fredrik@metallapan.se",
description="Generates environment variables for MFA auth against AWS CLI. Python 3.3+.",
license="MIT",
keywords="aws mfa cli",
url="https://github.com/wrapp/aws-mfa-login",
classifiers="""Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: Freely Distributable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3""".split('\n'),
long_description=open('README.md', 'rt').read(),
entry_points={
'console_scripts': [
'aws-mfa-login = wrapp.aws.mfa:main',
'aml = wrapp.aws.mfa:main',
]
},
)