Metadata-Version: 2.1
Name: django-ipghrms-payroll
Version: 1.0
Summary: Django IPG HRMS APP PAYROLL
Home-page: http://ipg.tl/
Author: Kinos
Author-email: info@kinos.tl
Maintainer: kinos
Maintainer-email: info@kinos.tl
License: MIT
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
License-File: LICENSE


============================
Django IPG HRMS payroll
============================


Quick start
============


1. Add 'payroll' to your INSTALLED_APPS settings like this::

    INSTALLED_APPS = [
        'payroll'
    ]

2. Include the payroll to project URLS like this::

    path('payroll/', include('payroll.urls')),

3. Run ``python manage.py migrate`` to create payroll model

4. Another Apps Need for this Apps::
    4.1. custom::
    4.2. employee::
    4.3. user
