Skip to content

Commit

Permalink
'# Please enter the commit message for your changes. Lines starting
Browse files Browse the repository at this point in the history
  • Loading branch information
Maria Antipova committed Dec 1, 2024
1 parent a146a42 commit 7201012
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
Empty file added brain_games/__init__.py
Empty file.
Binary file added brain_games/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Empty file added brain_games/scripts/__init__.py
Empty file.
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions brain_games/scripts/brain_games.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def main():
"""Prints a welcome message."""
print("Welcome to the Brain Games!")

if __name__ == "__main__":
main()
7 changes: 7 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = ""
authors = ["Maria Antipova <[email protected]>"]
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"

0 comments on commit 7201012

Please sign in to comment.