From 5773a3e8c30e616aee5a91f8cc3879a7e85f0352 Mon Sep 17 00:00:00 2001 From: Lucas <169063936+mustbeperfect@users.noreply.github.com> Date: Thu, 1 Jan 2026 21:39:39 -0800 Subject: [PATCH] Initialized UV and moved data to parent dir --- core/.python-version | 1 + core/README.md | 3 +++ core/main.py | 6 ++++++ core/pyproject.toml | 7 +++++++ core/requirements.txt | 1 - {core/data => data}/dynamic/applications.json | 0 {core/data => data}/dynamic/archive.json | 0 {core/data => data}/dynamic/backlog.json | 0 {core/data => data}/static/categories.json | 0 {core/data => data}/static/platforms.json | 0 {core/data => data}/static/project.json | 0 {core/data => data}/static/tags.json | 0 12 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 core/.python-version create mode 100644 core/README.md create mode 100644 core/main.py create mode 100644 core/pyproject.toml delete mode 100644 core/requirements.txt rename {core/data => data}/dynamic/applications.json (100%) rename {core/data => data}/dynamic/archive.json (100%) rename {core/data => data}/dynamic/backlog.json (100%) rename {core/data => data}/static/categories.json (100%) rename {core/data => data}/static/platforms.json (100%) rename {core/data => data}/static/project.json (100%) rename {core/data => data}/static/tags.json (100%) diff --git a/core/.python-version b/core/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/core/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/core/README.md b/core/README.md new file mode 100644 index 0000000..adb160f --- /dev/null +++ b/core/README.md @@ -0,0 +1,3 @@ +Core of the project responsible for generating README's and handling maintenance. + +Tooling: UV and Ruff \ No newline at end of file diff --git a/core/main.py b/core/main.py new file mode 100644 index 0000000..a5cb530 --- /dev/null +++ b/core/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from core!") + + +if __name__ == "__main__": + main() diff --git a/core/pyproject.toml b/core/pyproject.toml new file mode 100644 index 0000000..81206a1 --- /dev/null +++ b/core/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "core" +version = "0.1.0" +description = "definitive-opensource" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [] diff --git a/core/requirements.txt b/core/requirements.txt deleted file mode 100644 index 100d5ea..0000000 --- a/core/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -Requests==2.32.5 diff --git a/core/data/dynamic/applications.json b/data/dynamic/applications.json similarity index 100% rename from core/data/dynamic/applications.json rename to data/dynamic/applications.json diff --git a/core/data/dynamic/archive.json b/data/dynamic/archive.json similarity index 100% rename from core/data/dynamic/archive.json rename to data/dynamic/archive.json diff --git a/core/data/dynamic/backlog.json b/data/dynamic/backlog.json similarity index 100% rename from core/data/dynamic/backlog.json rename to data/dynamic/backlog.json diff --git a/core/data/static/categories.json b/data/static/categories.json similarity index 100% rename from core/data/static/categories.json rename to data/static/categories.json diff --git a/core/data/static/platforms.json b/data/static/platforms.json similarity index 100% rename from core/data/static/platforms.json rename to data/static/platforms.json diff --git a/core/data/static/project.json b/data/static/project.json similarity index 100% rename from core/data/static/project.json rename to data/static/project.json diff --git a/core/data/static/tags.json b/data/static/tags.json similarity index 100% rename from core/data/static/tags.json rename to data/static/tags.json