diff --git a/main.py b/main.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..76ac684 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "python-study-project" +version = "0.1.0" +description = "A project to practice and improve my Python programming skills." +authors = ["Factorino73 "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.13" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"