-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1.02 KB
/
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
33
34
35
36
[tool.poetry]
name = "hexlet-code"
version = "0.0.2"
description = "Solution of HexLet's first project in \"Python Profession\""
authors = ["Anton Siluev <[email protected]>"]
license = "MIT"
repository = "https://github.com/tribals/python-project-lvl1"
packages = [
{ include = "brain_games" },
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Games/Entertainment :: Puzzle Games",
]
[tool.poetry.dependencies]
python = "^3.9"
prompt = "^0.4.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
[tool.poetry.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"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"