forked from dcoker/awsmfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (45 loc) · 1.27 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
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
def get_version():
return open('awsmfa/_version.py').readline().strip().strip('"')
setup(
name='awsmfa',
version=get_version(),
description='Manage temporary MFA AWS credentials.',
long_description=open('README.rst').read(),
author='Doug Coker',
author_email='dcoker@gmail.com',
url='https://github.com/dcoker/awsmfa/',
include_package_data=False,
package_data={
'awsmfa': [
'awsmfa-basic-policies.json'
],
},
license='https://www.apache.org/licenses/LICENSE-2.0',
packages=[
'awsmfa'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Security',
],
zip_safe=False,
install_requires=[
'botocore>=1.12.216',
'boto3>=1.9.216',
'pytz>=2016.1',
'six>=1.10.0'
],
entry_points={
'console_scripts': [
'awsmfa=awsmfa.__main__:main'
]
},
)