From 1938ff4c9068c189c38f304d0f9006670d981bc4 Mon Sep 17 00:00:00 2001 From: Brosef Date: Mon, 16 Jun 2025 21:10:19 +0100 Subject: [PATCH 1/3] Renamed the library code to be in `src/` to follow conventions --- {NoPELib => src}/__init__.py | 0 {NoPELib => src}/expansion.py | 0 {NoPELib => src}/player_settings.py | 0 {NoPELib => src}/players.json | 0 {NoPELib => src}/standardFlags.py | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename {NoPELib => src}/__init__.py (100%) rename {NoPELib => src}/expansion.py (100%) rename {NoPELib => src}/player_settings.py (100%) rename {NoPELib => src}/players.json (100%) rename {NoPELib => src}/standardFlags.py (100%) diff --git a/NoPELib/__init__.py b/src/__init__.py similarity index 100% rename from NoPELib/__init__.py rename to src/__init__.py diff --git a/NoPELib/expansion.py b/src/expansion.py similarity index 100% rename from NoPELib/expansion.py rename to src/expansion.py diff --git a/NoPELib/player_settings.py b/src/player_settings.py similarity index 100% rename from NoPELib/player_settings.py rename to src/player_settings.py diff --git a/NoPELib/players.json b/src/players.json similarity index 100% rename from NoPELib/players.json rename to src/players.json diff --git a/NoPELib/standardFlags.py b/src/standardFlags.py similarity index 100% rename from NoPELib/standardFlags.py rename to src/standardFlags.py From c4bc1834627791be11902ac1a579be7968ab14bc Mon Sep 17 00:00:00 2001 From: Brosef Date: Tue, 17 Jun 2025 17:39:19 +0100 Subject: [PATCH 2/3] Stopped tracking .vscode directory --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b19507c..444d5fa 100644 --- a/.gitignore +++ b/.gitignore @@ -174,4 +174,6 @@ cython_debug/ # PyPI configuration file .pypirc -/test.py \ No newline at end of file +# ---> Other +/test.py +/.vscode/ \ No newline at end of file From f2e247caac39e721777389f7ce5ac24efdc438d6 Mon Sep 17 00:00:00 2001 From: Brosef Date: Thu, 19 Jun 2025 10:13:37 +0100 Subject: [PATCH 3/3] Updated pyproject.toml to reflect who actually did the work --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 05e0568..9b5bf74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,5 +6,5 @@ build-backend = "setuptools.build_meta" name = "NoPELib" version = "0.0.1.dev0" description = "Norway Player Execution Library (A player library)" -authors = [{ name = "Brosef" }] +authors = [{ name = "Oclaim" }] dependencies = [] \ No newline at end of file