From 6f50b1bcc639d670859e6d891571b18cb97261a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Tue, 18 Apr 2017 13:17:42 -0400 Subject: [PATCH] Improve setup.py and requirements.txt --- requirements.txt | 1 + setup.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f229360..39d4f77 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ +pbr>=1.8 requests diff --git a/setup.py b/setup.py index b2e43a5..919bcf9 100755 --- a/setup.py +++ b/setup.py @@ -13,10 +13,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -#!/usr/bin/env python from setuptools import setup setup( - setup_requires=["pbr>=1.8"], + setup_requires=['pbr'], pbr=True, )