Installation

Note

The swingtime documentation assumes familiarity with and installation of Python deployment tools pip, virtualenv, and virtualenvwrapper.

Get Swingtime

Basic Installation

Install into the current environment:

$ pip install django-swingtime

Full project source code

  • git:

    $ git clone https://github.com/dakrauth/django-swingtime.git django-swingtime
    $ cd django-swingtime
    
  • Download:

    $ curl -o swingtime.zip -L https://github.com/dakrauth/django-swingtime/archive/master.zip
    $ unzip swingtime.zip
    $ cd django-swingtime-master
    

Documentation

Note

Building the documentation requires Sphinx to be installed.

Install the swingtime project as shown in Full project source code and build the docs as follows:

$ cd docs
$ make html

Browse the file build/html/index.html.

Running the Tests

Note

From the django-swingtime root directory

$ cd tests
$ python manage.py test swingtime
$ ./cover # <-- run `coverage`
$ cd ../
$ tox