mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 04:07:01 +08:00
change filenames and directory structure to use halo (#81)
This commit is contained in:
committed by
Philipp Moritz
parent
b58eaf84ee
commit
67086f663e
@@ -0,0 +1,21 @@
|
||||
import sys
|
||||
|
||||
from setuptools import setup, Extension, find_packages
|
||||
import setuptools
|
||||
|
||||
# because of relative paths, this must be run from inside halo/lib/python/
|
||||
|
||||
MACOSX = (sys.platform in ["darwin"])
|
||||
|
||||
setup(
|
||||
name = "halo",
|
||||
version = "0.1.dev0",
|
||||
use_2to3=True,
|
||||
packages=find_packages(),
|
||||
package_data = {
|
||||
"halo": ["libhalolib.dylib" if MACOSX else "libhalolib.so",
|
||||
"scheduler",
|
||||
"objstore"]
|
||||
},
|
||||
zip_safe=False
|
||||
)
|
||||
Reference in New Issue
Block a user