--- a/docs/index.rst Thu Sep 10 00:17:29 2009 +0300
+++ b/docs/index.rst Fri Sep 11 22:50:48 2009 +0300
@@ -3,7 +3,7 @@
=============
.. toctree::
- :maxdepth: 2
+ :maxdepth: 1
changelog
overview
@@ -25,3 +25,19 @@
- subcommands support
- short, clean and concise definitions
- ability to shorten names of subcommand and long options
+
+What's nice
+-----------
+
+ - Opster is a `single file`_, which means that you can easily include it with
+ your application
+ - When you've decorated function as command, you can continue to use it as
+ usual Python function.
+ - It's easy to switch between usual command line options parser and
+ subcommands.
+
+Read more in `overview`_.
+
+
+.. _single file: http://hg.piranha.org.ua/opster/file/tip/opster.py
+.. _overview: overview
--- a/opster.py Thu Sep 10 00:17:29 2009 +0300
+++ b/opster.py Fri Sep 11 22:50:48 2009 +0300
@@ -6,7 +6,7 @@
from itertools import imap
__all__ = ['command', 'dispatch']
-__version__ = '0.9.8'
+__version__ = '0.9.9'
__author__ = 'Alexander Solovyov'
__email__ = 'piranha@piranha.org.ua'