Fix installation with requirements

* Fix installation from remote github repository via pip
   now we can install it using:
   pip install git+<github url>

Change-Id: Ibff661de9d4773f3c2d372e18a0e11c0cd7be40e
This commit is contained in:
Nikolay Mahotkin 2014-01-20 12:55:57 +04:00
parent 6120373a1b
commit 4aa4fe1d56
2 changed files with 3 additions and 2 deletions

@ -2,7 +2,7 @@
name = python-mistralclient
version = 0.01
summary = Mistral Client Library
description-file = README.rd
description-file = README.md
#license = Apache Software License
classifiers =
Programming Language :: Python

@ -19,4 +19,5 @@
import setuptools
setuptools.setup(
name="python-mistralclient")
setup_requires=['pbr'],
pbr=True)