(self)
| 100 | self.extras: dict = {} |
| 101 | |
| 102 | def get_packages(self): |
| 103 | if self.type == SetupType.RAY and self.build_type != BuildType.DEPS_ONLY: |
| 104 | return setuptools.find_packages(exclude=("tests", "*.tests", "*.tests.*")) |
| 105 | else: |
| 106 | return [] |
| 107 | |
| 108 | |
| 109 | build_type = os.getenv("RAY_DEBUG_BUILD") |