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')