From 6f508aa8c718e1a3f16706861e895b43cc4b3463 Mon Sep 17 00:00:00 2001 From: afoucaultc Date: Thu, 2 Jul 2026 12:08:56 +0200 Subject: [PATCH] start project --- .gitignore | 1 + README.md | 8 ++++++++ population_generation.py | 0 requirements.txt | 0 run.py | 0 run_linux.sh | 4 ++++ run_windows.sh | 4 ++++ 7 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 population_generation.py create mode 100644 requirements.txt create mode 100644 run.py create mode 100644 run_linux.sh create mode 100644 run_windows.sh 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