# HG changeset patch # User Gustavo Picon # Date 1275850953 18000 # Node ID 7a4648586b6c4ac048a04067cc2bb7804a277938 # Parent d172847043a4ca7effd460bfb6f0591044a2564b bumping version to 0.8c, docs diff -r d172847043a4ca7effd460bfb6f0591044a2564b -r 7a4648586b6c4ac048a04067cc2bb7804a277938 docs/conf.py --- a/docs/conf.py Sun May 23 23:34:50 2010 -0500 +++ b/docs/conf.py Sun Jun 06 14:02:33 2010 -0500 @@ -46,9 +46,9 @@ # built documents. # # The short X.Y version. -version = '0.8b' +version = '0.8c' # The full version, including alpha/beta/rc tags. -release = '0.8b' +release = '0.8c' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff -r d172847043a4ca7effd460bfb6f0591044a2564b -r 7a4648586b6c4ac048a04067cc2bb7804a277938 docs/index.rst --- a/docs/index.rst Sun May 23 23:34:50 2010 -0500 +++ b/docs/index.rst Sun Jun 06 14:02:33 2010 -0500 @@ -1,6 +1,8 @@ tagtools ======== +.. currentmodule:: tagtools + `tagtools `_ is a python library that parses raw strings with tags into a list of tags and viceversa, written by `Gustavo Picón `_ and licensed under the Apache License 2.0. @@ -26,6 +28,7 @@ .. toctree:: :maxdepth: 2 + intro api flickr delicious diff -r d172847043a4ca7effd460bfb6f0591044a2564b -r 7a4648586b6c4ac048a04067cc2bb7804a277938 docs/intro.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/intro.rst Sun Jun 06 14:02:33 2010 -0500 @@ -0,0 +1,47 @@ +Introduction +============ + +Everything you need to get working quickly. + + + +Prerequisites +------------- + +``tagtools`` needs **Python 2.4** or better to run. It has been tested up to +**Python 3.1**. Other python versions may work, but are not supported. + + +Installation +------------ + +You have several ways to install ``tagtools``. If you're not sure, +`just use pip `_ + +pip (or easy_install) +~~~~~~~~~~~~~~~~~~~~~ + +You can install the release versions from +`tagtools's PyPI page`_ using ``pip``:: + + pip install tagtools + +or if for some reason you can't use ``pip``, you can try ``easy_install``:: + + easy_install --always-unzip tagtools + + +setup.py +~~~~~~~~ + +Download a release from the `tagtools download page`_ and unpack it, then +run:: + + python setup.py install + + + +.. _`tagtools's PyPI page`: + http://pypi.python.org/pypi/tagtools +.. _`tagtools download page`: + http://pypi.python.org/packages/source/t/tagtools/ diff -r d172847043a4ca7effd460bfb6f0591044a2564b -r 7a4648586b6c4ac048a04067cc2bb7804a277938 setup.py --- a/setup.py Sun May 23 23:34:50 2010 -0500 +++ b/setup.py Sun Jun 06 14:02:33 2010 -0500 @@ -3,7 +3,7 @@ import os from distutils.core import setup -version = '0.8b' +version = '0.8c' classifiers = [ "Development Status :: 4 - Beta", diff -r d172847043a4ca7effd460bfb6f0591044a2564b -r 7a4648586b6c4ac048a04067cc2bb7804a277938 tagtools.py --- a/tagtools.py Sun May 23 23:34:50 2010 -0500 +++ b/tagtools.py Sun Jun 06 14:02:33 2010 -0500 @@ -1,5 +1,5 @@ -__version__ = '0.8b' +__version__ = '0.8c' class Serializer(object):