forked from data-platform-hq/mlflow-oidc-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (62 loc) · 1.89 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mlflow-oidc-auth"
dynamic = ["version"]
description = "OIDC auth plugin for MLflow"
readme = "README.md"
keywords = ["mlflow", "oauth2", "oidc"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
]
requires-python = ">=3.8"
dependencies = [
"cachelib<1",
"mlflow>=2.11.1",
"oauthlib<4",
"python-dotenv<2",
"requests<3,>=2.31.0",
"sqlalchemy<3,>=1.4.0",
"Flask<4",
"Flask-Session>=0.7.0",
]
[[project.maintainers]]
name = "Data Platform folks"
email = "[email protected]"
[project.license]
file = "LICENSE"
[project.urls]
homepage = "https://github.com/data-platform-hq/mlflow-oidc-auth"
issues = "https://github.com/data-platform-hq/mlflow-oidc-auth/issues"
documentation = "https://github.com/data-platform-hq/mlflow-oidc-auth/tree/main/docs/"
repository = "https://github.com/data-platform-hq/mlflow-oidc-auth"
[project.entry-points."mlflow.app"]
oidc-auth = "mlflow_oidc_auth.app:app"
[project.entry-points."mlflow_oidc_auth.client"]
basic-auth = "mlflow_oidc_auth.client:AuthServiceClient"
[tool.setuptools.package-data]
mlflow_oidc_auth = [
"db/migrations/alembic.ini",
"menu.html",
"static/*",
"templates/*",
"ui/*",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["mlflow_oidc_auth", "mlflow_oidc_auth.*"]
exclude = ["tests", "tests.*"]
[tool.setuptools.dynamic]
version = {attr = "mlflow_oidc_auth.version"}
[tool.black]
line-length = 128