Release v2

This commit is contained in:
2026-07-16 02:12:29 -03:00
parent 6f98163632
commit 76cbd799ce
47 changed files with 2409 additions and 2810 deletions
+11
View File
@@ -0,0 +1,11 @@
import tomllib
file = open("pyproject.toml", "rb")
data = tomllib.load(file)
file.close()
PROJECT_NAME = data["project"]["name"]
PROJECT_VERSION = data["project"]["version"]
PROJECT_DESCRIPTION = data["project"]["description"]