diff --git a/brain_games/__init__.py b/brain_games/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/brain_games/__pycache__/__init__.cpython-312.pyc b/brain_games/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..7c662c3 Binary files /dev/null and b/brain_games/__pycache__/__init__.cpython-312.pyc differ diff --git a/brain_games/scripts/__init__.py b/brain_games/scripts/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/brain_games/scripts/__pycache__/__init__.cpython-312.pyc b/brain_games/scripts/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..8756e43 Binary files /dev/null and b/brain_games/scripts/__pycache__/__init__.cpython-312.pyc differ diff --git a/brain_games/scripts/__pycache__/brain_games.cpython-312.pyc b/brain_games/scripts/__pycache__/brain_games.cpython-312.pyc new file mode 100644 index 0000000..67e530f Binary files /dev/null and b/brain_games/scripts/__pycache__/brain_games.cpython-312.pyc differ diff --git a/brain_games/scripts/brain_games.py b/brain_games/scripts/brain_games.py new file mode 100644 index 0000000..b95102c --- /dev/null +++ b/brain_games/scripts/brain_games.py @@ -0,0 +1,6 @@ +def main(): + """Prints a welcome message.""" + print("Welcome to the Brain Games!") + +if __name__ == "__main__": + main() diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..3af4d0e --- /dev/null +++ b/poetry.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +package = [] + +[metadata] +lock-version = "2.0" +python-versions = "^3.12" +content-hash = "34e39677d8527182346093002688d17a5d2fc204b9eb3e094b2e6ac519028228" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2aee5e6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "hexlet-code" +version = "0.1.0" +description = "" +authors = ["Maria Antipova "] +readme = "README.md" +packages = [ + { include = "brain_games" }, +] +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" + +[tool.poetry.scripts] +brain-games = "brain_games.scripts.brain_games:main"