Metadata-Version: 1.0
Name: django-aps-bom
Version: 0.6
Summary: The BOM module for django-apsara.

Home-page: https://github.com/bitmazk/django-aps-bom
Author: Martin Brochhaus
Author-email: mbrochh@gmail.com
License: The MIT License
Description: Django APSara BOM Module
        ========================
        
        .. image:: https://travis-ci.org/bitmazk/django-aps-bom.png?branch=master   
           :target: https://travis-ci.org/bitmazk/django-aps-bom
        
        .. image:: https://coveralls.io/repos/bitmazk/django-aps-bom/badge.png 
           :target: https://coveralls.io/r/bitmazk/django-aps-bom
        
        The BOM module for django-apsara.
        
        Installation
        ------------
        
        To get the latest commit from GitHub
        
        .. code-block:: bash
        
            pip install -e git+git://github.com/bitmazk/django-aps-bom.git#egg=aps_bom
        
        Add ``aps_bom`` to your ``INSTALLED_APPS``
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...,
                'aps_bom',
            )
        
        Add the ``aps_bom`` URLs to your ``urls.py``
        
        .. code-block:: python
        
            urlpatterns = patterns('',
                ...
                url(r'^aps-bom/', include('aps_bom.urls')),
            )
        
        Don't forget to migrate your database
        
        .. code-block:: bash
        
            ./manage.py migrate aps_bom
        
        Set the file upload handlers to only ``TemporaryFileUploadHandler``.
        
        .. code-block:: python
        
            FILE_UPLOAD_HANDLERS = (
                "django.core.files.uploadhandler.TemporaryFileUploadHandler",
            )
        
        
        Usage
        -----
        
        TODO: Describe usage or point to docs. Also describe available settings and
        templatetags.
        
        
        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-aps-bom
            make develop
        
            git co -b feature_branch master
            # Implement your feature and tests
            fab test  # Run the tests and check coverage
            git add . && git commit
            git push -u origin feature_branch
            # Send us a pull request for your feature branch
        
Keywords: django,app,reusable,apsara,planning,bom
Platform: OS Independent
