From a033de4a4342daba3685297a58cb5906c0fbead5 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sun, 17 Dec 2023 20:44:36 +0100 Subject: [PATCH] Update setup.py --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 56122bf..54a1657 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,17 @@ from setuptools import find_packages, setup +from pathlib import Path +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() + setup( name="mlflow-plugin-proxy-auth", + 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, version="0.0.4", packages=find_packages(), install_requires=["mlflow"],