Metadata-Version: 2.4
Name: fdock-cli
Version: 0.1.1
Summary: Un CLI pour initialiser des projets Python avec des scripts bash utiles
Home-page: https://github.com/yourusername/fdock-cli
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# 🚀 fdock-cli

Un ensemble d'outils en ligne de commande pour initialiser et gérer vos projets Python.

## ✨ Fonctionnalités

- 📁 Initialisation rapide de projets Python
- 🔧 Gestion automatisée des environnements virtuels
- 🎯 Création de structure de projet standardisée
- 🐳 Support Docker intégré

## 📥 Installation

```bash
pip install fdock-cli
python -m fdock_cli.install
source ~/.bashrc  # ou redémarrez votre terminal
```

## 🎮 Utilisation

### Commande `root`

Initialise un nouveau projet :
```bash
root
```

Options disponibles :
1. Créer un environnement virtuel (.venv) et l'activer
2. Créer un fichier .env
3. Les deux ! (avec activation du .venv)
4. Activer uniquement le .venv existant
5. Nettoyer le projet
6. Quitter

### Commande `hello`

Un exemple de commande simple :
```bash
hello
```

## 🔧 Structure créée

```
projet/
├── src/
│   └── __init__.py
├── .gitignore
├── .dockerignore
├── .dockerfile
├── .docker-compose.yml
├── pyproject.toml
├── README.md
└── .env
```

## 📝 License

MIT License 
