From 9676ffcd1d0794b6f55592e548c50e053c476eb9 Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 4 Jan 2017 14:39:01 +0000 Subject: [PATCH] Fix the setup.cfg metadata This patch is removing the quotes from "author" and "author-email" metadata in the setup.cfg file. Apparently having the values quoted causes the openstack-infra/project-config release.sh script to error out when uploading it to Pypi. This patch also updates the "url" metadata to point to the openstack git server. Change-Id: I992a5053a48f7a49f08f299b170cc3da40de242b --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index d8be90b..ddcdf9e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,14 +1,14 @@ [metadata] name = WSME -author = "Christophe de Vienne" -author-email = "python-wsme@googlegroups.com" +author = Christophe de Vienne +author-email = python-wsme@googlegroups.com summary = Simplify the writing of REST APIs, and extend them with additional protocols. description-file = README.rst -url = https://github.com/openstack/wsme +url = http://git.openstack.org/cgit/openstack/wsme license = MIT