forked from okta-awscli/okta-awscli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 785 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
from setuptools import setup, find_packages, os
here = os.path.abspath(os.path.dirname(__file__))
exec(open(os.path.join(here, 'oktaawscli/version.py')).read())
setup(
name='okta-awscli',
version=__version__,
description='Provides a wrapper for Okta authentication to awscli',
packages=find_packages(),
license='Apache License 2.0',
author='James Hale',
author_email='[email protected]',
url='https://github.com/jmhale/okta_awscli',
entry_points={
'console_scripts': [
'okta-awscli=oktaawscli.okta_awscli:main',
],
},
install_requires=[
'requests',
'click',
'bs4',
'boto3',
'ConfigParser',
],
extras_require={
'U2F': ['python-u2flib-host']
},
)