-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 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
36
37
[tool.poetry]
name = "AABur_brain_games"
version = "0.5.1"
description = "first of four training projects on the Python Software Developer course on Hexlet.io"
authors = ["AABur <aabur@mail.ru>"]
license = "MIT License"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Natural Language :: English",
"Topic :: Education",
]
repository = "https://github.com/AABur/python-project-lvl1"
packages = [
{ include = "brain_games" },
]
[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"
[tool.poetry.dependencies]
python = "^3.8"
prompt = "^0.4.1"
pyprimer = "^0.1.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
isort = "^5.5.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"