Metadata-Version: 2.4
Name: django-lasuite
Version: 0.0.15
Summary: Django La Suite - A Django library
Project-URL: Homepage, https://github.com/suitenumerique/django-lasuite
Project-URL: Bug Tracker, https://github.com/suitenumerique/django-lasuite/issues
Author-email: DINUM <dev@mail.numerique.gouv.fr>
License: MIT License
        
        Copyright (c) 2025 La Suite numérique
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Requires-Dist: django>=5.0
Requires-Dist: djangorestframework>=3.15.2
Requires-Dist: joserfc>=1.0.4
Requires-Dist: mozilla-django-oidc>=4.0.1
Requires-Dist: pyjwt>=2.10.1
Requires-Dist: requests-toolbelt>=1.0.0
Requires-Dist: requests>=2.32.3
Provides-Extra: all
Requires-Dist: celery>=5.0; extra == 'all'
Requires-Dist: django-configurations>=2.5.1; extra == 'all'
Provides-Extra: build
Requires-Dist: setuptools; extra == 'build'
Requires-Dist: wheel; extra == 'build'
Provides-Extra: configuration
Requires-Dist: django-configurations>=2.5.1; extra == 'configuration'
Provides-Extra: dev
Requires-Dist: celery>=5.0; extra == 'dev'
Requires-Dist: django-configurations>=2.5.1; extra == 'dev'
Requires-Dist: factory-boy; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-django; extra == 'dev'
Requires-Dist: responses; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: malware-detection
Requires-Dist: celery>=5.0; extra == 'malware-detection'
Description-Content-Type: text/markdown

# Django La Suite

A Django library for the common requirement for the "La Suite numérique" projects.

## Installation

```bash
pip install django-lasuite
```

## Quick Start

To be documented with the first implementations.

## Development

### Requirements

For this project, we use `uv` Python package manager.
Please follow the installation guidelines on the [uv documentation](https://docs.astral.sh/uv/getting-started/installation/).

### Setup

```bash
# Clone the repository
git clone https://github.com/suitenumerique/django-lasuite.git
cd django-lasuite

# Install development dependencies
make install-dev
```

### Testing

```bash
make test
```

### Code Quality

```bash
make lint
```

## License

MIT License
