2023-12-13 21:03:07 +00:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
2023-12-17 19:44:36 +00:00
|
|
|
from pathlib import Path
|
|
|
|
this_directory = Path(__file__).parent
|
|
|
|
long_description = (this_directory / "README.md").read_text()
|
|
|
|
|
2023-12-13 21:03:07 +00:00
|
|
|
setup(
|
|
|
|
name="mlflow-plugin-proxy-auth",
|
2023-12-17 19:44:36 +00:00
|
|
|
author="Matúš Námešný",
|
|
|
|
author_email="matus@namesny.com",
|
|
|
|
description="Provides authentication to Mlflow server using Proxy-Authorization header.",
|
|
|
|
url = "https://github.com/LordMathis/mlflow-plugin-proxy-auth",
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
long_description=long_description,
|
2023-12-13 22:34:58 +00:00
|
|
|
version="0.0.4",
|
2023-12-13 21:03:07 +00:00
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=["mlflow"],
|
|
|
|
entry_points={
|
|
|
|
"mlflow.request_auth_provider": "dummy-backend=mlflow_plugin_proxy_auth.proxy_auth_header_provider:ProxyAuthProvider",
|
|
|
|
},
|
|
|
|
)
|