From 4aa4fe1d56c9d2d3fd6e5532951c8e564956c03e Mon Sep 17 00:00:00 2001 From: Nikolay Mahotkin Date: Mon, 20 Jan 2014 12:55:57 +0400 Subject: [PATCH] Fix installation with requirements * Fix installation from remote github repository via pip now we can install it using: pip install git+ Change-Id: Ibff661de9d4773f3c2d372e18a0e11c0cd7be40e --- setup.cfg | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index fa8d1219..c0d724e9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/setup.py b/setup.py index 911b87e6..dc838db5 100644 --- a/setup.py +++ b/setup.py @@ -19,4 +19,5 @@ import setuptools setuptools.setup( - name="python-mistralclient") + setup_requires=['pbr'], + pbr=True)