mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 10:33:16 +08:00
Integration of Webui with Ray (#32)
* Initial integration of webui with ray * Re-organized calling of build-webui in setup.py * Fixed Lint comments on js code * Fixed more lint issues * Fixed various issues * Fixed directory in services.py * Small changes. * Changes to match lint
This commit is contained in:
committed by
Robert Nishihara
parent
7babe0d22f
commit
08707f9408
@@ -1,10 +1,15 @@
|
||||
from __future__ import print_function
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
import setuptools.command.install as _install
|
||||
|
||||
subprocess.check_call(["../../build-webui.sh"])
|
||||
datafiles = [(root, [os.path.join(root, f) for f in files])
|
||||
for root, dirs, files in os.walk("./webui")]
|
||||
|
||||
class install(_install.install):
|
||||
def run(self):
|
||||
subprocess.check_call(["../../build.sh"])
|
||||
@@ -22,6 +27,7 @@ setup(name="ray",
|
||||
"lib/python/libplasma.so"],
|
||||
"photon": ["build/photon_scheduler",
|
||||
"libphoton.so"]},
|
||||
data_files=datafiles,
|
||||
cmdclass={"install": install},
|
||||
install_requires=["numpy",
|
||||
"funcsigs",
|
||||
|
||||
Reference in New Issue
Block a user