Initialized UV and moved data to parent dir

This commit is contained in:
Lucas
2026-01-01 21:39:39 -08:00
parent b91f5b9955
commit 5773a3e8c3
12 changed files with 17 additions and 1 deletions

1
core/.python-version Normal file
View File

@@ -0,0 +1 @@
3.13

3
core/README.md Normal file
View File

@@ -0,0 +1,3 @@
Core of the project responsible for generating README's and handling maintenance.
Tooling: UV and Ruff

6
core/main.py Normal file
View File

@@ -0,0 +1,6 @@
def main():
print("Hello from core!")
if __name__ == "__main__":
main()

7
core/pyproject.toml Normal file
View File

@@ -0,0 +1,7 @@
[project]
name = "core"
version = "0.1.0"
description = "definitive-opensource"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []

View File

@@ -1 +0,0 @@
Requests==2.32.5