Metadata-Version: 2.4
Name: django-marina
Version: 26.2
Summary: Django extensions by Zostera
Keywords: django,utilities,testing
Author: Dylan Verheul
Author-email: Dylan Verheul <dylan@dyve.net>
License-Expression: BSD-3-Clause
License-File: AUTHORS
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Classifier: Framework :: Django :: 6.0
Classifier: Framework :: Django :: 6.1
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Dist: django>=5.2,<7.0
Requires-Dist: beautifulsoup4>=4.10.0
Requires-Python: >=3.10
Project-URL: Changelog, https://github.com/zostera/django-marina/blob/main/CHANGELOG.md
Project-URL: Documentation, https://django-marina.readthedocs.io/
Project-URL: Homepage, https://github.com/zostera/django-marina
Project-URL: Issues, https://github.com/zostera/django-marina/issues
Project-URL: Source, https://github.com/zostera/django-marina
Description-Content-Type: text/markdown

# django-marina

[![CI](https://github.com/zostera/django-marina/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/zostera/django-marina/actions/workflows/ci.yml)
[![Coverage Status](https://coveralls.io/repos/github/zostera/django-marina/badge.svg?branch=main)](https://coveralls.io/github/zostera/django-marina?branch=main)
[![Latest PyPI version](https://img.shields.io/pypi/v/django-marina.svg)](https://pypi.python.org/pypi/django-marina)

Django extensions by Zostera.

## Goal

The goal of this project is to bundle small, reusable extensions for Django projects: database
utilities, HTML helpers, and test infrastructure shared across Zostera's Django packages.

## Status

Ready for production. Issues and pull requests welcome, see [CONTRIBUTING.md](CONTRIBUTING.md).

## Requirements

This package requires a combination of Python and Django that is currently supported.

See "Supported Versions" on https://www.djangoproject.com/download/.

This package uses [uv](https://github.com/astral-sh/uv) and [just](https://github.com/casey/just) for local development.

## Documentation

The full documentation is at https://django-marina.readthedocs.io/

## Installation

1. Install using pip:

    ```console
    pip install django-marina
    ```

2. Add to `INSTALLED_APPS` in your `settings.py`:

   ```python
   INSTALLED_APPS = (
       # ...
       "django_marina",
       # ...
   )
   ```

## Bugs and suggestions

If you have found a bug or if you have a request for additional functionality, please use the issue tracker on GitHub.

https://github.com/zostera/django-marina/issues

## License

You can use this under BSD-3-Clause. See [LICENSE](LICENSE) file for details.

## Author

Developed and maintained by [Zostera](https://zostera.nl).

Original author: [Dylan Verheul](https://github.com/dyve).

Thanks to everybody that has contributed pull requests, ideas, issues, comments and kind words.

Please see [AUTHORS](AUTHORS) for a list of contributors.
