commit 6f508aa8c718e1a3f16706861e895b43cc4b3463 Author: afoucaultc Date: Thu Jul 2 12:08:56 2026 +0200 start project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..21d0b89 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..5d7488a --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Usage +```bash +``` +- lancer le code +```bash +chmod +x run.sh +./run.sh +``` diff --git a/population_generation.py b/population_generation.py new file mode 100644 index 0000000..e69de29 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e69de29 diff --git a/run.py b/run.py new file mode 100644 index 0000000..e69de29 diff --git a/run_linux.sh b/run_linux.sh new file mode 100644 index 0000000..30ce028 --- /dev/null +++ b/run_linux.sh @@ -0,0 +1,4 @@ +python -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +python run.py diff --git a/run_windows.sh b/run_windows.sh new file mode 100644 index 0000000..bc19987 --- /dev/null +++ b/run_windows.sh @@ -0,0 +1,4 @@ +python -m venv .venv +source .venv\Scripts\activate +pip install -r requirements.txt +python run.py