blob: e7a1fe4a94190ad6090d7c800cfebd8b8c3dfed1 [file] [log] [blame]
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
MESOS_REV = '0.26.0'
python_requirement_library(
name = 'mesos.interface',
requirements = [
python_requirement(
requirement = 'mesos.interface==%s' % MESOS_REV,
)
]
)
python_requirement_library(
name = 'mesos.native',
requirements = [
python_requirement(
requirement = 'mesos.native==%s' % MESOS_REV,
# This native egg must currently be fetched out-of-band.
# See examples/vagrant/provision-dev-cluster.sh which fetches
# to third_party/ and uses mesos.native to enable a running
# cluster inside the root Vagrant machine.
repository = '%s/third_party' % get_buildroot(),
)
]
)
python_requirements()