We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de769b2 commit a033de4Copy full SHA for a033de4
setup.py
@@ -1,7 +1,17 @@
1
from setuptools import find_packages, setup
2
3
+from pathlib import Path
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
+
7
setup(
8
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,
15
version="0.0.4",
16
packages=find_packages(),
17
install_requires=["mlflow"],
0 commit comments