-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 857 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
from distutils.core import setup
setup(
name = 'aws-mfa-gen',
packages = ['aws-mfa-gen'],
version = '0.1',
license='MIT',
description = 'Provides aws-mfa-gen command that uses AWS STS to assume role and place result into aws cli credentials file.',
author = 'Marcin Byrdziak',
author_email = '[email protected]',
url = 'https://github.com/mbyrdziak/aws-mfa-gen',
download_url = 'https://github.com/mbyrdziak/aws-mfa-gen/tarball/0.1',
keywords = ['aws', 'mfa', 'login'],
install_requires=[
'boto',
'configparser',
],
scripts=['aws-mfa-gen/aws-mfa-gen'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
)