From 023006be86a9fb8383cd00e1d40d5e38c741d520 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Wed, 13 Oct 2010 22:05:13 +0100 Subject: [PATCH] Wow. Packaging mistakes. Now fixed. Bump version --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 2358829c..3cdaca28 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ -from distutils.core import setup +from setuptools import setup import sys -requires = ['feedgenerator', 'jinja2', 'pygments'] +requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils'] if sys.version_info < (2,7): requires.append('argparse') setup( name = "pelican", - version = '1.2', + version = '1.2.1', url = 'http://hg.lolnet.org/pelican/', author = 'Alexis Metaireau', author_email = 'alexis@notmyidea.org', @@ -15,7 +15,7 @@ setup( long_description=open('README.rst').read(), packages = ['pelican'], package_data = {'pelican': ['themes/templates/*']}, - requires = requires, + install_requires = requires, scripts = ['bin/pelican'], classifiers = ['Development Status :: 5 - Production/Stable', 'Environment :: Console',