mirror of
https://github.com/mustbeperfect/definitive-opensource.git
synced 2026-04-17 21:54:05 +02:00
Initialized UV and moved data to parent dir
This commit is contained in:
1
core/.python-version
Normal file
1
core/.python-version
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3.13
|
||||||
3
core/README.md
Normal file
3
core/README.md
Normal 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
6
core/main.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
def main():
|
||||||
|
print("Hello from core!")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
7
core/pyproject.toml
Normal file
7
core/pyproject.toml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[project]
|
||||||
|
name = "core"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "definitive-opensource"
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.13"
|
||||||
|
dependencies = []
|
||||||
@@ -1 +0,0 @@
|
|||||||
Requests==2.32.5
|
|
||||||
Reference in New Issue
Block a user