Metadata-Version: 2.4
Name: django-phonedir
Version: 0.1b3
Summary: A reusable Django app for a phone directory system.
Project-URL: Homepage, https://github.com/dixonbegay/django-phonedir
Project-URL: Repository, https://github.com/dixonbegay/django-phonedir.git
Project-URL: Issues, https://github.com/dixonbegay/django-phonedir/issues
Author-email: Dixon Begay <dixon@dixon-labs.net>
License: LGPL-3.0-or-later
License-File: LICENSE
Keywords: app,book,company,dir,directory,django,internal,intranet,ldap,phone,phonedir,reusable
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Classifier: Framework :: Django :: 6
Classifier: Framework :: Django :: 6.0
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
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.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Requires-Dist: django-phonenumber-field>=8.4.0
Requires-Dist: django>=5.2
Requires-Dist: phonenumberslite>7.0.2
Description-Content-Type: text/markdown

# django_phonedir

A reusable Django app for a phone directory system.

Tested and known to work with Django 5.2 and newer. Tested with Python 3.12 and
newer.

## Installation

Install via pip.

```
pip install django-phonedir
```

Add to Django settings `INSTALLED_APPS` like so...

```
INSTALLED_APPS = [
    ...
    "django-phonedir",
    ...
]
```

## Development

This project is under active development by myself. This Django app is
functioning, but would like to setup more testing to ensure the package remains
stable.

This project will eventually be published to PyPi in the near future so that it
can easily be integrated into a Django website.

I will develop better documentation at a later date.

### Setup

Use pipenv for managing the package requirements for development.

```
pipenv install --dev
```

### Testing

Tests can be run using the command: `pipenv run`
