Update setup.py
This commit is contained in:
parent
de769b21bd
commit
a033de4a43
10
setup.py
10
setup.py
|
@ -1,7 +1,17 @@
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
from pathlib import Path
|
||||||
|
this_directory = Path(__file__).parent
|
||||||
|
long_description = (this_directory / "README.md").read_text()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="mlflow-plugin-proxy-auth",
|
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",
|
version="0.0.4",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=["mlflow"],
|
install_requires=["mlflow"],
|
||||||
|
|
Loading…
Reference in New Issue