1
0
Fork 0
forked from github/pelican
pelican-theme/setup.py

45 lines
1.4 KiB
Python
Raw Normal View History

2011-05-06 16:29:15 +06:00
#!/usr/bin/env python
from setuptools import setup
2010-12-19 01:30:08 +00:00
2012-08-13 20:55:26 +02:00
requires = ['feedgenerator', 'jinja2 >= 2.4', 'pygments', 'docutils', 'pytz',
'blinker', 'unidecode']
try:
2012-08-13 20:55:26 +02:00
import argparse # NOQA
except ImportError:
requires.append('argparse')
entry_points = {
'console_scripts': [
'pelican = pelican:main',
'pelican-import = pelican.tools.pelican_import:main',
'pelican-quickstart = pelican.tools.pelican_quickstart:main',
'pelican-themes = pelican.tools.pelican_themes:main'
]
}
setup(
2012-08-13 20:55:26 +02:00
name="pelican",
version="3.1",
url='http://getpelican.com/',
author='Alexis Metaireau',
author_email='alexis@notmyidea.org',
description="A tool to generate a static blog from reStructuredText or "\
"Markdown input files.",
2010-08-19 13:46:53 +02:00
long_description=open('README.rst').read(),
2012-08-13 20:55:26 +02:00
packages=['pelican', 'pelican.tools', 'pelican.plugins'],
include_package_data=True,
install_requires=requires,
entry_points=entry_points,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
2012-08-13 20:56:43 +02:00
test_suite='tests',
)