-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
54 lines (49 loc) · 1.64 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
50
51
52
53
54
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pkg_resources import parse_requirements
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
setup(
name="awscli_saml_sso",
version="0.3.1",
author="Benjamin Brabant",
author_email="[email protected]",
python_requires=">=3.8,<3.12",
license="GNU General Public License v3",
url="https://github.com/octo-technology/awscli-saml-sso",
packages=find_packages(),
description="""awscli_saml_sso is a command line tool that aims to get temporary credentials from SAML identity
provider in order to authenticate to awscli.""",
keywords=["awscli", "saml", "sso"],
long_description=readme,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
include_package_data=True,
install_requires=[
"boto3==1.16.26",
"click==7.1.2",
"selenium==4.21.0",
"selenium-wire==5.1.0",
"webdriver-manager==4.0.1",
"keyring==25.4.1",
"blinker==1.7.0",
"pyopenssl==22.0.0",
"cryptography==38.0.4",
"h2==4.1.0",
"setuptools==65.5.0"
],
entry_points={
"console_scripts": [
"awscli_saml_sso = awscli_saml_sso.main:main",
],
},
)