-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 949 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
33
34
35
36
37
38
39
40
# pyproject.toml
[build-system]
requires = [
"setuptools",
"wheel",
"requests",
"pyopenssl",
"jwcrypto"
]
build-backend = "setuptools.build_meta"
[project]
name = "aduneoclientfedid"
version = "2.0.1"
description = "Identity Federation Test Client"
readme = "README.md"
authors = [{ name = "Aduneo", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
keywords = ["identity", "federation", "openid connect", "oidc", "oauth", "oauth 2", "saml"]
dependencies = [
"requests",
"jwcrypto",
"pyopenssl",
]
requires-python = ">=3.6"
[project.optional-dependencies]
saml = ["xmlsec"]
[project.urls]
homepage = "https://www.aduneo.com"
repository = "https://github.com/Aduneo/aduneoclientfedid"
[project.scripts]
clientfedid = "aduneoclientfedid.__main__:main"
aduneoclientfedid = "aduneoclientfedid.__main__:main"