Metadata-Version: 2.3
Name: django-async-backend
Version: 0.0.1
Summary: Django extension providing async capabilities for database and other components
License: MIT
Keywords: django,asyncio,database
Requires-Python: >=3.12
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Dist: django (>=5,<6)
Requires-Dist: psycopg[binary] (>=3,<4)
Project-URL: Documentation, https://github.com/Arfey/django-async-backend/blob/main/README.md
Project-URL: Homepage, https://github.com/Arfey/django-async-backend
Project-URL: Repository, https://github.com/Arfey/django-async-backend
Description-Content-Type: text/markdown

# Django Async Backend

## ⚙️ Develop

Install pre-commit hooks

```
pip install pre-commit
pre-commit install
```

Install dependencies

```
poetry install
```



## 🧪 Tests

This project includes a comprehensive test suite using unittest.

To run tests:

```
DJANGO_SETTINGS_MODULE=settings poetry run python -m unittest discover -s tests
```

