Skip to content

Commit 32c1db7

Browse files
committed
mk-brain,scripts and touch init,+edit pyt.toml
1 parent 876d691 commit 32c1db7

File tree

9 files changed

+36
-0
lines changed

9 files changed

+36
-0
lines changed

brain_games/__init__.py

Whitespace-only changes.
154 Bytes
Binary file not shown.

brain_games/scripts/__init__.py

Whitespace-only changes.
162 Bytes
Binary file not shown.
388 Bytes
Binary file not shown.

brain_games/scripts/brain_games.py

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

hello.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from python-project-49!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

hexlet-code

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[project]
2+
name = "python-project-49"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = []

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[project]
2+
name = "hexlet-code"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = []
8+
9+
[build-system]
10+
requires = ["hatchling"]
11+
build-backend = "hatchling.build"
12+
13+
[tool.hatch.build.targets.wheel]
14+
packages = ["brain_games"]
15+
16+
[project.scripts]
17+
brain-games = "brain_games.scripts.brain_games:main"
18+

0 commit comments

Comments
 (0)