Metadata-Version: 2.1
Name: django-tiny-erp
Version: 0.4.2
Summary: Enterprise Resource Planning (ERP) for tiny companies
Home-page: https://github.com/moshthepitt/tiny-erp
Author: Kelvin Jayanoris
Author-email: kelvin@jayanoris.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django (>=2.1.10)
Requires-Dist: django-vega-admin (==0.0.19)
Requires-Dist: small-small-hr (==0.4.2)
Requires-Dist: django-phonenumber-field
Requires-Dist: phonenumbers
Requires-Dist: django-prices

# tiny-erp

[![Build Status](https://api.travis-ci.com/moshthepitt/tiny-erp.svg?branch=master)](https://travis-ci.com/moshthepitt/tiny-erp)

Enterprise Resource Planning (ERP) for tiny companies

## Installation

1. Install the app: `pip install django-tiny-erp`
2. Add the tiny-erp apps to `INSTALLED_APPS`.

   ```py
   INSTALLED_APPS = [
       # the usual django stuff
       "tiny_erp",
       "tiny_erp.apps.locations",
       "tiny_erp.apps.products",
       "tiny_erp.apps.purchases",
       "small_small_hr",
       'model_reviews',
       'django_comments',
   ]
   ```

3. Run `manage.py migrate` so that Django will create the model_review tables.
4. Set up the [django-model-reviews](https://github.com/moshthepitt/django-model-reviews) and [small-small-hr](https://github.com/moshthepitt/small-small-hr) apps.


