Metadata-Version: 2.1
Name: django-axe
Version: 0.3.7
Summary: 
Author: Brahma Dutta Upadhyay
Author-email: brahmaduttau@kpmg.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: django (>=4.2.9,<5.0.0)
Requires-Dist: djlint (>=1.34.1,<2.0.0)
Requires-Dist: ruff (>=0.5.1,<0.6.0)
Description-Content-Type: text/markdown

# Django Axe

This project is a Django module designed to extend the functionality of Django applications. It provides a set of models, views, and templates that can be integrated into existing Django projects to add new features or improve existing ones.

## Installation

To install this module, follow these steps:

1. Clone this repository into your Django project directory:
    ```bash
    git clone https://github.com/brahmaduttau/django_axe
    ```
2. Add the app to your INSTALLED_APPS in your project's settings.py:
    ```python
    INSTALLED_APPS = [
        ...
        'django_axe',
        ...
    ]
    ```

3. Include the app's URLs in your project's urls.py:
from django.urls import path, include
```python
urlpatterns = [

    path('axe/', include('django_axe.urls')),
    
]
```

