1
0
Fork 0
forked from github/pelican

Add a features list on the README. Remove the dependency to rst2pdf by default.

This commit is contained in:
Alexis Metaireau 2010-11-07 14:13:20 +00:00
commit aa30ca9256
2 changed files with 13 additions and 2 deletions

View file

@ -39,6 +39,18 @@ Note that only the `date` metadata is mandatory, so you just have to add that in
your files. The category can also be determined by the directory where the rst file
is. For instance, the category of `python/foobar/myfoobar.rst` is `foobar`.
Features
--------
Pelican currently supports:
* blog articles
* comments, via an external service (disqus). Please notice that while
it's useful, it's an external service, and you'll not manage the
comments by yourself. It could potentially eat your data.
* theming support (themes are done using `jinja2 <http://jinjna.pocoo.org>`_)
* PDF generation of the articles/pages (optional).
Getting started — Generate your blog
-------------------------------------

View file

@ -1,8 +1,7 @@
from setuptools import setup
import sys
requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'Markdown',
'rst2pdf']
requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'Markdown']
if sys.version_info < (2,7):
requires.append('argparse')