forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 799 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
from setuptools import find_packages, setup
setup(
name="ray_release",
packages=find_packages(
where=".",
include=[
package for package in find_packages() if package.startswith("ray_release")
],
),
version="0.0.1",
author="Ray Team",
description="The Ray OSS release testing package",
url="https://github.com/ray-project/ray",
install_requires=[
# Keep this in sync with requirements_buildkite.in
"anyscale",
"bazel-runfiles",
"boto3",
"click",
"freezegun",
"google-cloud-storage",
"jinja2",
"protobuf",
"pydantic >= 2.5.0",
"pytest",
"pyyaml",
"pybuildkite",
"PyGithub",
"requests",
"retry",
],
)