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:
Robert Nishihara
2016-11-12 19:37:20 -08:00
committed by Philipp Moritz
parent 28a80ca058
commit 43aba4fc6d
4 changed files with 63 additions and 63 deletions
+11 -1
View File
@@ -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")