Metadata-Version: 2.1
Name: base-common-drf
Version: 0.1
Summary: Django app with common implementations for base Angewandte projects using Django REST Framework
License: Apache License, Version 2.0
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django>=4.2
Requires-Dist: djangorestframework>=3.13

# base-common-drf

base-common-drf is a Django app with common implementations for base Angewandte projects using Django REST Framework.

## Quick start

1. Install the package:

```
pip install base-common-drf
```

2. Add `base_common_drf` to your `INSTALLED_APPS` setting like this:

```
INSTALLED_APPS = [
    …,
    'base_common_drf',
]
```
