From aa30ca92560362b5bcb1ac85994a37e3e84d8e53 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 7 Nov 2010 14:13:20 +0000 Subject: [PATCH] Add a features list on the README. Remove the dependency to rst2pdf by default. --- README.rst | 12 ++++++++++++ setup.py | 3 +-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index b767145f..3b57b17b 100644 --- a/README.rst +++ b/README.rst @@ -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 `_) +* PDF generation of the articles/pages (optional). + Getting started — Generate your blog ------------------------------------- diff --git a/setup.py b/setup.py index 13a67957..e5deb946 100644 --- a/setup.py +++ b/setup.py @@ -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')