forked from MagicCastle/oauth2freeipa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (28 loc) · 933 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "oauth2freeipa"
version = "1.2.8"
authors = [
{ name="Félix-Antoine Fortin", email="[email protected]" },
]
description = "Package to create FreeIPA users after connecting in JupyterHub with oauthenticator"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"jupyterhub",
"oauthenticator"
]
[project.urls]
Homepage = "https://github.com/magiccastle/oauth2freeipa"
Issues = "https://github.com/magiccastle/oauth2freeipa/issues"
[project.entry-points."jupyterhub.authenticators"]
ipa-oauth = "oauth2freeipa:LocalFreeIPAGenericOAuthenticator"
ipa-github = "oauth2freeipa:LocalFreeIPAGitHubOAuthenticator"
ipa-cilogon = "oauth2freeipa:LocalFreeIPACILogonOAuthenticator"