2010-10-13 22:05:13 +01:00
|
|
|
from setuptools import setup
|
2010-08-19 13:45:03 +02:00
|
|
|
import sys
|
|
|
|
|
|
2010-11-07 14:13:20 +00:00
|
|
|
requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'Markdown']
|
2010-08-19 13:45:03 +02:00
|
|
|
if sys.version_info < (2,7):
|
|
|
|
|
requires.append('argparse')
|
2010-08-19 04:23:07 +02:00
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name = "pelican",
|
2010-12-13 22:46:53 +00:00
|
|
|
version = '2.5.1',
|
2010-10-31 00:08:16 +01:00
|
|
|
url = 'http://alexis.notmyidea.org/pelican/',
|
2010-08-19 04:23:07 +02:00
|
|
|
author = 'Alexis Metaireau',
|
|
|
|
|
author_email = 'alexis@notmyidea.org',
|
2010-10-31 00:08:16 +01:00
|
|
|
description = "A tool to generate a static blog, with restructured text (or markdown) 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'],
|
2010-10-30 16:47:59 +01:00
|
|
|
include_package_data = True,
|
2010-10-13 22:05:13 +01:00
|
|
|
install_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',
|
|
|
|
|
],
|
|
|
|
|
)
|