forked from SeldonIO/tempo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1010 Bytes
/
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
from setuptools import find_packages, setup
from tempo import __version__
def readme():
with open("README.md") as f:
return f.read()
# read version file
exec(open("tempo/version.py").read())
setup(
name="tempo",
author="Seldon Technologies Ltd.",
author_email="[email protected]",
version=__version__, # type: ignore # noqa F821
description="Machine Learning Operations Toolkit",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/SeldonIO/tempo",
license="Apache 2.0",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6",
setup_requires=["pytest-runner"],
install_requires=[
"numpy",
"kubernetes",
"packaging",
"requests",
"pydantic",
"cloudpickle",
"python-rclone",
"seldon-deploy-sdk",
],
tests_require=["pytest", "pytest-cov", "pytest-xdist", "pytest-lazy-fixture"],
zip_safe=False,
)