Metadata-Version: 1.1
Name: ERP
Version: 0.20
Summary: Resourse Planning System
Home-page: https://github.com/CLTanuki/ERP
Author: CLTanuki
Author-email: CLTanuki@gmail.com
License: BSD License
Description: ===
        ERP
        ===
        
        ERP is resource planning system. This is very early version not for using.
        
        Package is being developed in general for modeling and expected to be used
        as advanced task management solution at the current stage.
        
        First beta will roll out late july and will contain all to work with
        enterprise material and technical base. After beta release work over finance
        component would be done.
        
        Detailed documentation would appear in the "docs" directory with beta release.
        
        ***********
        Quick start
        ***********
        
        1. Add package apps to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'erp.directory',
                'erp.planning',
                'erp.enterprise',
                'erp.article',
                'rest_framework',
            )
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^pm/', include('planning.urls')),
            url(r'^structure/', include('enterprise.urls')),
            url(r'^resource/$', planning.views.ResListView.as_view()),
            url(r'^accounts/login/$', 'django.contrib.auth.views.login'),
            url(r'^accounts/reg/$', 'enterprise.views.register'),
            url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
        
        3. Add custom auth app to your project settings.py like this::
        
            from erp import enterprise
            AUTH_USER_MODEL = 'enterprise.CorpUser'
        
        4. Run `python manage.py syncdb` to create models.
        
        5. Visit http://127.0.0.1:8000/ to get started.
        
        6. Forgive me ^_^
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Development Status :: 3 - Alpha
