mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Wow. Packaging mistakes. Now fixed. Bump version
This commit is contained in:
parent
e8bb6c626e
commit
023006be86
1 changed files with 4 additions and 4 deletions
8
setup.py
8
setup.py
|
|
@ -1,13 +1,13 @@
|
||||||
from distutils.core import setup
|
from setuptools import setup
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
requires = ['feedgenerator', 'jinja2', 'pygments']
|
requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils']
|
||||||
if sys.version_info < (2,7):
|
if sys.version_info < (2,7):
|
||||||
requires.append('argparse')
|
requires.append('argparse')
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "pelican",
|
name = "pelican",
|
||||||
version = '1.2',
|
version = '1.2.1',
|
||||||
url = 'http://hg.lolnet.org/pelican/',
|
url = 'http://hg.lolnet.org/pelican/',
|
||||||
author = 'Alexis Metaireau',
|
author = 'Alexis Metaireau',
|
||||||
author_email = 'alexis@notmyidea.org',
|
author_email = 'alexis@notmyidea.org',
|
||||||
|
|
@ -15,7 +15,7 @@ setup(
|
||||||
long_description=open('README.rst').read(),
|
long_description=open('README.rst').read(),
|
||||||
packages = ['pelican'],
|
packages = ['pelican'],
|
||||||
package_data = {'pelican': ['themes/templates/*']},
|
package_data = {'pelican': ['themes/templates/*']},
|
||||||
requires = requires,
|
install_requires = requires,
|
||||||
scripts = ['bin/pelican'],
|
scripts = ['bin/pelican'],
|
||||||
classifiers = ['Development Status :: 5 - Production/Stable',
|
classifiers = ['Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue