Moving setup.py.in back to setup.py

This commit is contained in:
Christopher Allan Webber 2013-07-25 14:34:48 -05:00
parent 2723bb154a
commit 00ed01b7cb
2 changed files with 3 additions and 3 deletions

View File

@ -197,6 +197,6 @@ dnl Finish #
dnl######### dnl#########
dnl Define the files to be configured dnl Define the files to be configured
AC_CONFIG_FILES([Makefile setup.py]) AC_CONFIG_FILES([Makefile])
dnl Generate config.status dnl Generate config.status
AC_OUTPUT AC_OUTPUT

View File

@ -34,7 +34,7 @@ def get_version():
setup( setup(
name="@PACKAGE_NAME@", name="mediagoblin",
version=get_version(), version=get_version(),
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
zip_safe=False, zip_safe=False,
@ -91,7 +91,7 @@ setup(
""", """,
license='AGPLv3', license='AGPLv3',
author='Free Software Foundation and contributors', author='Free Software Foundation and contributors',
author_email='@PACKAGE_BUGREPORT@', author_email='cwebber@gnu.org',
url="http://mediagoblin.org/", url="http://mediagoblin.org/",
download_url="http://mediagoblin.org/download/", download_url="http://mediagoblin.org/download/",
long_description=open(READMEFILE).read(), long_description=open(READMEFILE).read(),