start project

This commit is contained in:
afoucaultc 2026-07-02 12:08:56 +02:00
commit 6f508aa8c7
7 changed files with 17 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.venv/

8
README.md Normal file
View file

@ -0,0 +1,8 @@
# Usage
```bash
```
- lancer le code
```bash
chmod +x run.sh
./run.sh
```

0
population_generation.py Normal file
View file

0
requirements.txt Normal file
View file

0
run.py Normal file
View file

4
run_linux.sh Normal file
View file

@ -0,0 +1,4 @@
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python run.py

4
run_windows.sh Normal file
View file

@ -0,0 +1,4 @@
python -m venv .venv
source .venv\Scripts\activate
pip install -r requirements.txt
python run.py