-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 1015 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[project]
name = "hexlet-code"
version = "0.1.0"
description = "Brain Games — a set of five console games inspired by popular mobile brain-training apps. Each game asks questions you need to answer correctly. Three correct answers in a row wins the round; a wrong answer ends the game and offers you a chance to try again."
authors = [{ name = "VeveryCold", email = "denis1timerkaev@gmail.com" }]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"prompt>=0.4.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["brain_games"]
[dependency-groups]
dev = [
"ruff>=0.15.20",
]
[project.scripts]
brain-games = "brain_games.scripts.brain_games:main"
brain-even = "brain_games.scripts.brain_even:main"
brain-calc = "brain_games.scripts.brain_calc:main"
brain-gcd = "brain_games.scripts.brain_gcd:main"
brain-progression = "brain_games.scripts.brain_progression:main"
brain-prime = "brain_games.scripts.brain_prime:main"