Metadata-Version: 2.4
Name: SSIaquitaine
Version: 0.1.0
Summary: Un outil de gestion de projet pour un SSI (Système de Sécurité Informatique).
Home-page: https://github.com/tuteur1/SSIaquitaine
Author: Mohamed Redha Abdessemed
Author-email: mohamed.abdessemed@eurocybersecurite.fr
Project-URL: Documentation, https://github.com/tuteur1/SSIaquitaine#readme
Project-URL: Source, https://github.com/tuteur1/SSIaquitaine
Project-URL: Issues, https://github.com/tuteur1/SSIaquitaine/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Setuptools Plugin
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# SSIaquitaine

Un outil de gestion de projet pour un SSI (Système de Sécurité Informatique).

## Fonctionnalités

- **Core**: Fonctions de base pour l'accueil des utilisateurs SSI.
- **Planning**: Gestion simple des tâches (ajouter, lister, supprimer).
- **Audit**: Module pour ajouter et suivre des audits de sécurité.
- **Reporting**: Génération d'un rapport texte de l'état des projets SSI.

## Architecture

```
SSIaquitaine
├── Core       → Fonctions de base (welcome)
├── Planning   → Gestion des tâches SSI
├── Audit      → Suivi des audits de sécurité
└── Reporting  → Génération de rapports
```

## Exemple d'utilisation

### Utilisation en Python

```python
from ssiaquitaine.core import welcome
print(welcome("Mohamed"))
```

### Utilisation en ligne de commande (CLI)

```bash
ssiaquitaine-welcome Mohamed
```

## Installation

1. Clonez le dépôt :
   ```bash
   git clone https://github.com/tuteur1/SSIaquitaine.git
   cd SSIaquitaine
   ```
2. Créez et activez un environnement virtuel :
   ```bash
   python3 -m venv venv
   source venv/bin/activate
   ```
3. Installez le package :
   ```bash
   pip install .
   ```

## Contribution

Les contributions sont les bienvenues ! Veuillez suivre les étapes suivantes :
1. Fork le dépôt.
2. Créez une nouvelle branche (`git checkout -b feature/AwesomeFeature`).
3. Effectuez vos modifications et commitez-les (`git commit -m 'Add some AwesomeFeature'`).
4. Poussez vers la branche (`git push origin feature/AwesomeFeature`).
5. Ouvrez une Pull Request.

## Licence

Ce projet est sous licence MIT. Voir le fichier [LICENSE](LICENSE) pour plus de détails.
