forked from rkeiii/aws-mfa-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.1 KB
/
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
36
37
38
from codecs import open
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='aws-mfa-v2',
version='0.2.5',
description='Manage AWS MFA Security Credentials',
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3+',
author='Ron Ellis',
author_email='[email protected]',
packages=['awsmfav2'],
entry_points={
'console_scripts': [
'aws-mfa=awsmfav2.cli:main',
],
},
url='https://github.com/rkeiii/aws-mfa-v2',
python_requires='>=3.6',
install_requires=['boto3', 'configparser', 'argparse', 'python-dateutil'],
extras_require={
'yubikey': ['yubikey-manager']
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
],
)