Skip to content

Commit be759ea

Browse files
committed
add headings and some description for games to README.md, update pyproject.toml information, add .gitignore rules
1 parent 5dc127d commit be759ea

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
__pycache__/
2-
2+
.pytest_cache/
33
.venv/
44
dist/
5+
*.egg-info
6+
*.pyc
7+
.coverage
8+
coverage.xml

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22
[![Actions Status](https://github.com/bazarovstas/python-project-49/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/bazarovstas/python-project-49/actions)
33
[![Maintainability](https://api.codeclimate.com/v1/badges/5d6e3363a9f1e31f303f/maintainability)](https://codeclimate.com/github/bazarovstas/python-project-49/maintainability)
44

5-
the demo of the even game shows the game process:
5+
## The Even Game
6+
This demo of the even game shows the game process:
67
[![asciicast](https://asciinema.org/a/687407.svg)](https://asciinema.org/a/687407)
78

8-
the demo of the calc game shows the game process:
9+
## The Calc Game
10+
This demo of the calc game shows the game process:
911
[![asciicast](https://asciinema.org/a/687410.svg)](https://asciinema.org/a/687410)
1012

11-
the demo of the gcd game shows the game process:
13+
## The GCD Game
14+
This demo of the gcd game shows the game process:
1215
[![asciicast](https://asciinema.org/a/687411.svg)](https://asciinema.org/a/687411)
1316

14-
the demo of the progressive game shows the game process:
17+
## The Progressive Game
18+
This demo of the progressive game shows the game process:
1519
[![asciicast](https://asciinema.org/a/687412.svg)](https://asciinema.org/a/687412)
1620

17-
the demo of the prime game shows the game process:
21+
## The Prime Game
22+
This demo of the prime game shows the game process:
1823
[![asciicast](https://asciinema.org/a/687413.svg)](https://asciinema.org/a/687413)

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[tool.poetry]
22
name = "hexlet-code"
33
version = "0.1.0"
4-
description = "Project of the first module - Brain Games"
4+
description = "Brain Games is a set of several games for your gray matter."
55
authors = ["Stanislav B <[email protected]>"]
66
readme = "README.md"
7+
repository = "https://github.com/bazarovstas/python-project-49"
78
packages = [
89
{ include = "brain_games" },
910
]
11+
classifiers = [
12+
"Topic :: Games/Entertainment :: Puzzle Games"
13+
]
1014

1115
[tool.poetry.dependencies]
1216
python = "^3.12"

0 commit comments

Comments
 (0)