-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.04 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
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = "This programme allow user to play five different games."
classifiers = [
"Development Status :: 5 - Production/Stable",
"OPERATING SYSTEM :: POSIX :: LINUX",
"OPERATING SYSTEM :: MICROSOFT :: WINDOWS",
"FILTER PROGRAMMING LANGUAGE :: PYTHON :: 3.8",
"TOPIC :: GAMES/ENTERTAINMENT"
]
authors = ["AnyaMankova <[email protected]>"]
repository = "https://github.com/AnyaMankova/python-project-lvl1"
packages = [
{ include = "brain_games"},
]
[tool.poetry.dependencies]
python = "^3.8"
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"