-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 915 Bytes
/
pyproject.toml
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
31
32
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = "A few warm-up games for your brain"
authors = [
"Andrei Emelianenko <[email protected]>"
]
classifiers = [
"Development Status :: 5 - Production/Stable"
]
readme = "README.md"
repository = "https://github.com/thiSSSnake/python-project-49"
packages = [{include = "brain_games"}]
[tool.poetry.dependencies]
python = "^3.10"
prompt = "^0.4.1"
[tool.poetry.scripts]
brain-games = "brain_games.scripts.welcome:main"
brain-even = "brain_games.scripts.brain_even:launch"
brain-calc = "brain_games.scripts.brain_calc:launch"
brain-gcd = "brain_games.scripts.brain_gcd:launch"
brain-progression = "brain_games.scripts.brain_progression:launch"
brain-prime = "brain_games.scripts.brain_prime:launch"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"