2010-08-19 04:23:07 +02:00
|
|
|
from distutils.core import setup
|
2010-08-19 13:45:03 +02:00
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
requires = ['feedgenerator', 'jinja2', 'pygments']
|
|
|
|
|
if sys.version_info < (2,7):
|
|
|
|
|
requires.append('argparse')
|
2010-08-19 04:23:07 +02:00
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name = "pelican",
|
2010-08-19 13:47:04 +02:00
|
|
|
version = '1.1',
|
2010-08-19 04:23:07 +02:00
|
|
|
url = 'http://hg.lolnet.org/pelican/',
|
|
|
|
|
author = 'Alexis Metaireau',
|
|
|
|
|
author_email = 'alexis@notmyidea.org',
|
|
|
|
|
description = "A tool to generate a static blog, with restructured text input files.",
|
2010-08-19 13:46:53 +02:00
|
|
|
long_description=open('README.rst').read(),
|
2010-08-19 04:23:07 +02:00
|
|
|
packages = ['pelican'],
|
|
|
|
|
package_data = {'pelican': ['themes/templates/*']},
|
2010-08-19 14:14:25 +02:00
|
|
|
requires = requires,
|
2010-08-19 04:23:07 +02:00
|
|
|
scripts = ['bin/pelican'],
|
|
|
|
|
classifiers = ['Development Status :: 5 - Production/Stable',
|
|
|
|
|
'Environment :: Console',
|
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python',
|
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
|
],
|
|
|
|
|
)
|