-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
66 lines (57 loc) · 1.66 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
from typing import Dict
from setuptools import find_packages, setup
ROOT_PATH = os.path.dirname(__file__)
PKG_NAME = "tempo"
PKG_PATH = os.path.join(ROOT_PATH, PKG_NAME)
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,
# TODO: Update once we've got consensus on package name
name="mlops-tempo",
author="Seldon Technologies Ltd.",
author_email="[email protected]",
version=_load_version(),
description="Machine Learning Operations Toolkit",
url="https://github.com/SeldonIO/tempo",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.7",
setup_requires=["pytest-runner"],
install_requires=[
"grpcio>=1.32.0",
"protobuf>=3.14.0",
"attrs",
"numpy",
"kubernetes",
"docker",
"packaging",
"aiohttp",
"requests",
"pydantic",
"cloudpickle",
"python-rclone",
"seldon-deploy-sdk",
"conda-pack",
"mlserver",
"janus",
"aiohttp",
"redis",
],
tests_require=["pytest", "pytest-cov", "pytest-xdist", "pytest-lazy-fixture"],
zip_safe=False,
long_description=_load_description(),
long_description_content_type="text/markdown",
license="Apache 2.0",
)