-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 967 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
import os
from setuptools import setup, find_packages
def read():
return open(os.path.join(os.path.dirname(__file__), "README.md")).read()
setup(
name="infadapter",
version="0.0.1",
keywords=["ML Inference", "ML Service", "Autoscaling", "Auto-Configuration", "Kubernetes", "Cloud Computing"],
packages=find_packages("."),
long_description=read(),
install_requires=[
"wheel==0.38.4",
"matplotlib==3.6.3",
"numpy==1.23.4",
"tensorflow==2.11.1",
"tensorflow-serving-api==2.11.1",
"grpcio==1.43.0",
"pandas==1.5.3",
"scikit-learn==1.2.0",
"kubernetes-python-client @ git+https://github.com/reconfigurable-ml-pipeline/kubernetes-python-client.git",
"barazmoon @ git+https://github.com/reconfigurable-ml-pipeline/load_tester.git",
],
extras_require={
"dev": [
"pillow==9.4.0",
"opencv-python==4.6.0.66"
]
}
)