From 187af28b0c2d825fc43ffdbaafa024d4bbe16779 Mon Sep 17 00:00:00 2001 From: Brandon Invergo Date: Sun, 19 May 2013 13:36:33 +0200 Subject: [PATCH] move setup.py to setup.py.in and add macros --- setup.py => setup.py.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename setup.py => setup.py.in (98%) diff --git a/setup.py b/setup.py.in similarity index 98% rename from setup.py rename to setup.py.in index 312de2f8..b53bc244 100644 --- a/setup.py +++ b/setup.py.in @@ -34,7 +34,7 @@ def get_version(): setup( - name="mediagoblin", + name="@PACKAGE_NAME@", version=get_version(), packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), zip_safe=False, @@ -91,7 +91,7 @@ setup( """, license='AGPLv3', author='Free Software Foundation and contributors', - author_email='cwebber@gnu.org', + author_email='@PACKAGE_BUGREPORT@', url="http://mediagoblin.org/", download_url="http://mediagoblin.org/download/", long_description=open(READMEFILE).read(),