mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 21:12:15 +08:00
Install python package dependencies through setup.py. (#39)
* Install python package dependencies through setup.py. * Do pip installs without sudo. * Clearer instructions for running tests. * Wording.
This commit is contained in:
committed by
Philipp Moritz
parent
28a80ca058
commit
43aba4fc6d
+11
-1
@@ -1,3 +1,5 @@
|
||||
from __future__ import print_function
|
||||
|
||||
import subprocess
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
@@ -21,5 +23,13 @@ setup(name="ray",
|
||||
"photon": ["build/photon_scheduler",
|
||||
"libphoton.so"]},
|
||||
cmdclass={"install": install},
|
||||
install_requires=["numpy",
|
||||
"funcsigs",
|
||||
"colorama",
|
||||
"psutil",
|
||||
"redis",
|
||||
"cloudpickle",
|
||||
"numbuf==0.0.1"],
|
||||
include_package_data=True,
|
||||
zip_safe=False)
|
||||
zip_safe=False,
|
||||
license="Apache 2.0")
|
||||
|
||||
Reference in New Issue
Block a user