Skip to content

Commit a033de4

Browse files
committed
Update setup.py
1 parent de769b2 commit a033de4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
from setuptools import find_packages, setup
22

3+
from pathlib import Path
4+
this_directory = Path(__file__).parent
5+
long_description = (this_directory / "README.md").read_text()
6+
37
setup(
48
name="mlflow-plugin-proxy-auth",
9+
author="Matúš Námešný",
10+
author_email="matus@namesny.com",
11+
description="Provides authentication to Mlflow server using Proxy-Authorization header.",
12+
url = "https://github.com/LordMathis/mlflow-plugin-proxy-auth",
13+
long_description_content_type="text/markdown",
14+
long_description=long_description,
515
version="0.0.4",
616
packages=find_packages(),
717
install_requires=["mlflow"],

0 commit comments

Comments
 (0)