Installing django-swaps in a Pinax complete_project
-----------------------------------------------------

Download Pinax from http://pinaxproject.com/download/

Swaps is included in pinax/projects/complete_project

Installing the latest development version of django-swaps
---------------------------------------------------------------
 
Check out or export the latest version of the application from subversion:
    
    svn co http://django-swaps.googlecode.com/svn/trunk/ django-swaps
    

Install to be used in one Django project
-------------------------------------------    

Copy the inner ''swaps'' app into your Django project. 
    
Install to be used in many Django projects
-------------------------------------------

Installing via symlink
-----------------------
 
Link the inner ``swaps`` app to your Python path:
 
    sudo ln -s `pwd`/swaps SITE_PACKAGES_DIR/swaps
 
If you don't know the location of your site packages directory, this hack might do the trick for you:
 
    sudo ln -s `pwd`/swaps `python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"`/swaps
    
Now it's installed! Please see usage.txt for information on how to use this application in your projects.
 
Installing via setup.py
-----------------------
 
Included with this application is a file named ``setup.py``. It's possible to use this file to install this application to your system, by invoking the following command:
 
    sudo python setup.py install
 
Once that's done, you should be able to begin using django-swaps at will.
 
Installing via setuptools
-------------------------
 
If you have setuptools_ installed, you can simply run the following command to install django-swaps:
 
    sudo easy_install django-swaps
 
.. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools