-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'# Please enter the commit message for your changes. Lines starting
- Loading branch information
Maria Antipova
committed
Dec 1, 2024
1 parent
a146a42
commit 7201012
Showing
8 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |