mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 00:44:50 +08:00
18 lines
349 B
Python
18 lines
349 B
Python
import sys
|
|
|
|
from setuptools import setup, Extension, find_packages
|
|
import setuptools
|
|
|
|
# because of relative paths, this must be run from inside ray/lib/python/
|
|
|
|
setup(
|
|
name = "ray",
|
|
version = "0.1.dev0",
|
|
use_2to3=True,
|
|
packages=find_packages(),
|
|
package_data = {
|
|
"ray": ["libraylib.so", "scheduler", "objstore"]
|
|
},
|
|
zip_safe=False
|
|
)
|