#!/usr/bin/env python """ Mock PBR Bug =================== There is a parse bug from pbr 1.8.0 with mock 1.3.0. """ from setuptools import setup, find_packages setup_requires = [ 'pbr', ] install_requires = [ ] tests_require = [ 'mock>=1.3.0', ] setup( name="mock_pbr_bug", version='0.0.1', author='Rafael Reggiani Manzo', author_email='rr.manzo@gmail.com', url='https://gist.github.com/rafamanzo/ae7090ee8e616fe71ca6', description='There is a parse bug from pbr 1.8.0 with mock 1.3.0.', long_description=__doc__, license='GPL3', packages=find_packages(), zip_safe=False, setup_requires=setup_requires, pbr=False, install_requires=install_requires, tests_require=tests_require, extras_require={'test': tests_require}, include_package_data=True, )