From d25e1de5cc7be99800d4ba8b45eeca9b958937cb Mon Sep 17 00:00:00 2001 From: TimurNurlygayanov Date: Mon, 20 Jan 2014 21:29:32 +0400 Subject: [PATCH] Fixed issue with tarballs. Closes-Bug: #1271068 Change-Id: I6f3035b19655313bb481650af69d9681cae02cb7 --- README.md => README.rst | 0 requirements.txt | 1 - setup.cfg | 13 +++++-------- setup.py | 3 ++- 4 files changed, 7 insertions(+), 10 deletions(-) rename README.md => README.rst (100%) diff --git a/README.md b/README.rst similarity index 100% rename from README.md rename to README.rst diff --git a/requirements.txt b/requirements.txt index d368b50d5..c369c60a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,5 @@ pbr>=0.5.21,<1.0 eventlet>=0.13.0 -http://tarballs.openstack.org/taskflow/taskflow-master.tar.gz pyyaml pecan>=0.2.0 WSME>=0.5b6 diff --git a/setup.cfg b/setup.cfg index 48e795596..1dc1dbcad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,8 +2,10 @@ name = mistral version = 0.01 summary = Mistral Project -description-file = README.rd -#license = Apache Software License +description-file = + README.rst +license = Apache License, Version 2.0 +home-page = https://launchpad.net/mistral classifiers = Programming Language :: Python Programming Language :: Python :: 2 @@ -13,15 +15,10 @@ classifiers = Intended Audience :: System Administrators #License :: OSI Approved :: Apache Software License Operating System :: POSIX :: Linux -author = OpenStack +author = Openstack Mistral Team author-email = openstack-dev@lists.openstack.org [files] packages = mistral -[nosetests] -cover-package = mistral - -[extract_messages] -keywords = _ gettext ngettext l_ lazy_gettext diff --git a/setup.py b/setup.py index 7cf8441e0..dc838db5a 100644 --- a/setup.py +++ b/setup.py @@ -19,4 +19,5 @@ import setuptools setuptools.setup( - name="mistral") + setup_requires=['pbr'], + pbr=True)