-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (28 loc) · 985 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=67", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aws-federated-auth"
authors = [
{name = "Jim Denk", email="[email protected]"},
]
maintainers = []
description = "Navigate Enhanced Client or Proxy (ECP) authorization from a Security Assertion Markup Language (SAML) Identity Provider (IDP) for Amazon Web Services (AWS) Single Sign On (SSO) federation."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["SAML","AWS","SSO","federated","federation","credentials","creds","IDP","ECP","IAM","Role","STS"]
license = {text = "MIT"}
version = "1.0.1"
dependencies = [
"requests",
"boto3",
"keyring",
]
[tool.setuptools.packages]
find = {}
[project.scripts]
aws-federated-auth = "shib.cli:main"
[project.urls]
"Homepage" = "https://github.com/upenn/aws-federated-auth"
"Repository" = "https://github.com/upenn/aws-federated-auth"
"Documentation" = "https://github.com/upenn/aws-federated-auth"