Metadata-Version: 2.1
Name: base-common
Version: 0.4
Summary: Django app with common implementations used in many base Angewandte projects
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: shortuuid>=1.0.11

# base-common

base-common is a Django app with common implementations used in many base Angewandte projects.

## Quick start

1. Install the package:

```
pip install base-common
```

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

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