Skip to content

Commit 59a5f15

Browse files
committed
Welcome to the Brain Games!
1 parent 5a551ab commit 59a5f15

File tree

8 files changed

+36
-0
lines changed

8 files changed

+36
-0
lines changed

brain_games/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
148 Bytes
Binary file not shown.

brain_games/scripts/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
156 Bytes
Binary file not shown.
332 Bytes
Binary file not shown.

brain_games/scripts/brain_games.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
# brain_games/scripts/brain_games.py
3+
4+
def main():
5+
print("Welcome to the Brain Games!")
6+
7+
if __name__ == "__main__":
8+
main()

poetry.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[tool.poetry]
2+
name = "hexlet-code"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["Nurzhan2023 <[email protected]>"]
6+
readme = "README.md"
7+
packages = [
8+
{ include = "brain_games" },
9+
]
10+
11+
[tool.poetry.dependencies]
12+
python = "^3.9"
13+
14+
[tool.poetry.scripts]
15+
brain-games = "brain_games.scripts.brain_games:main"
16+
17+
[build-system]
18+
requires = ["poetry-core"]
19+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)