Skip to content

Commit

Permalink
Merge pull request #4 from windreamer/master
Browse files Browse the repository at this point in the history
fix link
  • Loading branch information
windreamer committed Apr 28, 2016
2 parents 41bad16 + 7603171 commit c504a9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 14 deletions.
3 changes: 1 addition & 2 deletions bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ fi

$VIRTUAL_ENV/bin/pip install --upgrade pip
$VIRTUAL_ENV/bin/pip install -r requirements.txt
$VIRTUAL_ENV/bin/pip install --upgrade setuptools || true
$VIRTUAL_ENV/bin/python setup.py develop
$VIRTUAL_ENV/bin/pip install -e .
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ six==1.10.0
wheel==0.29.0
wsgiref==0.1.2
zkpython==0.4.2
-e git+https://github.com/tfmesos/mesos.interface.git@v0.28.1_proto3#egg=mesos.interface
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0rc0-cp27-none-linux_x86_64.whl
-e git+https://github.com/douban/mesos.interface.git#egg=mesos.interface
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl
12 changes: 2 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
from setuptools import setup, find_packages

dependency_links = []
with open("requirements.txt") as fhandler:
for line in fhandler:
line = line.strip()
_E_ = "-e "
if line.startswith(_E_):
line = line[3:]
dependency_links.append(line)

version = '0.0.1'
setup(
name='tfmesos',
version=version,
packages=find_packages(),
install_requires=[
'tensorflow>=0.8.0',
'pymesos',
],
dependency_links=dependency_links,
)

0 comments on commit c504a9f

Please sign in to comment.