Metadata-Version: 1.0
Name: django-units
Version: 0.2
Summary: A Django app to convert units between different systems

Home-page: https://github.com/bitmazk/django-units
Author: Daniel Kaufhold
Author-email: daniel.kaufhold@bitmazk.com
License: The MIT License
Description: Django Units [WIP]
        ==================
        
        A Django app to convert units between different systems.
        
        It is meant to simplify the need to use different unit systems at the same
        time. E.g. providing inputs, that allow entering distances and weights in the
        imperial or the metric system.
        
        
        Installation
        ------------
        
        To get the latest stable release from PyPi
        
        .. code-block:: bash
        
            pip install django-units
        
        To get the latest commit from GitHub
        
        .. code-block:: bash
        
            pip install -e git+git://github.com/bitmazk/django-units.git#egg=units
        
        TODO: Describe further installation steps (edit / remove the examples below):
        
        Add ``units`` to your ``INSTALLED_APPS``
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...,
                'units',
            )
        
        Add the ``units`` URLs to your ``urls.py``
        
        .. code-block:: python
        
            urlpatterns = patterns('',
                ...
                url(r'^units/', include('units.urls')),
            )
        
        Before your tags/filters are available in your templates, load them by using
        
        .. code-block:: html
        
        	{% load units_tags %}
        
        
        Don't forget to migrate your database
        
        .. code-block:: bash
        
            ./manage.py migrate units
        
        
        Usage
        -----
        
        TODO: Describe usage or point to docs. Also describe available settings and
        templatetags.
        
        Point to constants, form mixin and general conversion utils. [WIP]
        
        Contribute
        ----------
        
        If you want to contribute to this project, please perform the following steps
        
        .. code-block:: bash
        
            # Fork this repository
            # Clone your fork
            mkvirtualenv -p python2.7 django-units
            make develop
        
            git co -b feature_branch master
            # Implement your feature and tests
            git add . && git commit
            git push -u origin feature_branch
            # Send us a pull request for your feature branch
        
Keywords: django,app,reusable,units,imperial,metric,lbs,kg,meter,inch,cm,feet
Platform: OS Independent
