Metadata-Version: 1.1
Name: django-billjobs
Version: 0.2.3
Summary: A django billing app for coworking space.
Home-page: https://github.com/ioO/django-billjobs
Author: Lionel Chanson
Author-email: github@lionelchanson.fr
License: X11 License
Description: Billjobs
        ========
        
        A django billing app for coworking space.
        
        This app is designed to manage bills for the coworking space **Cowork'in Montpellier**.
        We intend to stay easy and lite. You can manage coworkers informations and their respective bills.
        
        **No tax management**. There is no tax for non-profit organization in France. This application doesn't manage tax, it 
            only displays legal French informations and tax 0% on bills.
        
        ###Features
        
        All the features are managed throught [django admin.site](https://docs.djangoproject.com/en/1.8/ref/contrib/admin/)
        
        - User and Group management is provided by [django auth](https://docs.djangoproject.com/en/dev/topics/auth/) module.
        - Billing management
        - Services management
        
        ###Installing
        
            pip install django-billjobs
        
        ###Contributing
        
        Billjobs project uses [git flow](http://nvie.com/posts/a-successful-git-branching-model/)
        
        **develop** branch is for development.
        **master** branch contains last release.
        
        Release are prefixed by *v*
        
        ####Installation
        
        **Clone repository**
        
            git clone https://github.com/ioO/billjobs.git
        
        **Checkout develop branch**
        
            git checkout develop
        
        **Create a virtualenv with python 3 binary**
        
        Billjobs was initially written with __python 2.7__ and move to __python 3.x__
        It works with __python 3.5__
        
        Read [virtualenv documentation](http://virtualenvwrapper.readthedocs.org/en/latest/ "Virtualenv")
        
            mkvirtualenv django-billjobs --python=/path/to/python3.5
            add2virtualenv path/to/django-billjobs
        
        **Install dependencies**
        
            pip install -r requirements_dev.txt
        
        **Sample settings**
        
        The *core/* folder contains sample settings for development. Use DJANGO_SETTINGS_MODULE environment variables.
        
        In your virtualenv *bin/postactivate*
        
            export DJANGO_SETTINGS_MODULE=core.settings
        
        In your virtualenv *bin/postdeactivate*
        
            unser DJANGO_SETTINGS_MODULE
        
        You can run server to test your development with :
        
            django-admin runserver
        
        **Database**
        
        Development use sqlite3 engine.
        
            django-admin migrate
        
        You can use development fixtures
        
            django-admin loaddata billjobs/fixtures/dev_data.json
        
        **If you setup a super user it will be deleted by fixtures data.**
        - Login : bill
        - Password : jobs
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.6
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
