renaming project, halo -> ray (#95)

This commit is contained in:
Robert Nishihara
2016-06-10 14:12:15 -07:00
committed by Philipp Moritz
parent 44ae1788ee
commit 4cc024ae36
41 changed files with 453 additions and 481 deletions
+3 -3
View File
@@ -3,15 +3,15 @@ import sys
from setuptools import setup, Extension, find_packages
import setuptools
# because of relative paths, this must be run from inside halo/lib/python/
# because of relative paths, this must be run from inside ray/lib/python/
setup(
name = "halo",
name = "ray",
version = "0.1.dev0",
use_2to3=True,
packages=find_packages(),
package_data = {
"halo": ["libhalolib.so", "scheduler", "objstore"]
"ray": ["libraylib.so", "scheduler", "objstore"]
},
zip_safe=False
)