From ef797bc85b6b23ebf4e4c097341587f3e1992ffb Mon Sep 17 00:00:00 2001 From: Sergey Vanyushkin Date: Sun, 12 Apr 2026 21:35:18 +0300 Subject: [PATCH] blog project init --- main.py | 6 ++++++ pyproject.toml | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/main.py b/main.py new file mode 100644 index 0000000..38e9c19 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from blog!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6550d9c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "blog" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = []