Metadata-Version: 2.1
Name: django-country-utils
Version: 0.0.3
Summary: Django models to country currency and country phone code.
Home-page: https://github.com/okchaty/django-country
Author: Chaty
Author-email: developer@okchaty.com
License: 'MIT License'  # Example license
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
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown

# Django-country-utils

Package to add Country , Currency and PhoneCode apps
to django.

## Installation

To install this package run
`pip install django-country-utils`

## Usage

To use it add to settings.py

``` python

INSTALLED_APPS = [

    # previous modules  
    'currency',
    'country',
    'phonecode',
]

```


