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