Metadata-Version: 2.3
Name: package-creation-tutorial-borghel
Version: 0.1.1
Summary: Un exemple de package Python
License: MIT
Author: Borghel
Author-email: borghelborghel3@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
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
Requires-Dist: pre-commit (>=4.1.0,<5.0.0)
Requires-Dist: pytest (>=8.3.4,<9.0.0)
Requires-Dist: pytest-cov (>=6.0.0,<7.0.0)
Requires-Dist: ruff (>=0.9.2,<0.10.0)
Requires-Dist: sphinx (>=8.1.3,<9.0.0)
Requires-Dist: sphinx-rtd-theme (>=3.0.2,<4.0.0)
Description-Content-Type: text/markdown

1. Clonez le dépôt :
   ```bash
   git clone https://github.com/borghel/package_creation_tutorial.git sous windows


**Après :**
```markdown
1. Clonez le dépôt sous Windows :
   ```bash
   git clone https://github.com/borghel/package_creation_tutorial.git


4. Enregistrez les modifications.

---

### Étape 2 : Commit et mise à jour sur GitHub
1. Ouvrez un terminal ou une invite de commandes et naviguez dans le dossier de votre dépôt local :
   ```bash
   cd chemin/vers/package_creation_tutorial

Commitez et poussez le fichier :
```bash
git add README.md
git commit -m "Ajout du fichier README.md"
git push
3. Ajouter d'autres fichiers ou scripts
Créez des modules ou scripts pour la logique principale de votre projet Python.
Ajoutez un fichier setup.py si vous envisagez de rendre ce projet installable comme package Python.
Exemple de base pour setup.py :

