setup.py 799 B

123456789101112131415161718192021222324252627282930313233
  1. from setuptools import find_packages, setup
  2. setup(
  3. name="ray_release",
  4. packages=find_packages(
  5. where=".",
  6. include=[
  7. package for package in find_packages() if package.startswith("ray_release")
  8. ],
  9. ),
  10. version="0.0.1",
  11. author="Ray Team",
  12. description="The Ray OSS release testing package",
  13. url="https://github.com/ray-project/ray",
  14. install_requires=[
  15. # Keep this in sync with requirements_buildkite.in
  16. "anyscale",
  17. "bazel-runfiles",
  18. "boto3",
  19. "click",
  20. "freezegun",
  21. "google-cloud-storage",
  22. "jinja2",
  23. "protobuf",
  24. "pydantic >= 2.5.0",
  25. "pytest",
  26. "pyyaml",
  27. "pybuildkite",
  28. "PyGithub",
  29. "requests",
  30. "retry",
  31. ],
  32. )