-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 977 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
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 8):
sys.exit("Sorry, Python < 3.8 is not supported")
setup(
name="ai-workbench",
version="1.3.0",
author="Viacheslav Kovalevskyi",
author_email="viacheslav@kovalevskyi.com",
packages=find_packages(),
entry_points={
"console_scripts": [
"workbench=workbench.cli:main"
]
},
url="http://pypi.python.org/pypi/nmp/",
license="LICENSE",
description="GCP Vertex AI high level SDK",
install_requires=[
"docker==5.0.*",
"google-cloud-aiplatform==1.10.*",
"grpcio==1.36.*",
"PyYAML==5.4.*",
"google-api-python-client==2.37.*",
"six==1.16.*",
"google-cloud-storage==1.32.*",
"nbformat==5.1.*"
],
include_package_data=True,
package_data={"workbench": ["workbench/prediction/container/Dockerfile", "workbench/prediction/container/requirements.txt"]},
)