-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
44 lines (35 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os
from typing import Dict
from setuptools import setup, find_packages
ROOT_PATH = os.path.dirname(__file__)
PKG_NAME = "mlserver-alibi-explain"
PKG_PATH = os.path.join(ROOT_PATH, PKG_NAME.replace("-", "_"))
def _load_version() -> str:
version = ""
version_path = os.path.join(PKG_PATH, "version.py")
with open(version_path) as fp:
version_module: Dict[str, str] = {}
exec(fp.read(), version_module)
version = version_module["__version__"]
return version
def _load_description() -> str:
readme_path = os.path.join(ROOT_PATH, "README.md")
with open(readme_path) as fp:
return fp.read()
setup(
name=PKG_NAME,
version=_load_version(),
url="https://github.com/SeldonIO/MLServer.git",
author="Seldon Technologies Ltd.",
author_email="[email protected]",
description="Alibi-Explain runtime for MLServer",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"mlserver",
"alibi[shap, tensorflow]",
"orjson",
],
long_description=_load_description(),
long_description_content_type="text/markdown",
license="Apache 2.0",
)