mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
12 lines
363 B
Python
12 lines
363 B
Python
![]() |
from setuptools import find_packages, setup
|
||
|
|
||
|
setup(
|
||
|
name="ray_release",
|
||
|
packages=find_packages(where=".", include="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=["ray>=1.9", "click", "anyscale", "boto3", "freezegun"],
|
||
|
)
|