-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 989 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
33
34
35
36
37
[tool.poetry]
name = "kotano_brain_games"
version = "0.9.4"
description = "Hexlet python project called 'Brain Games'"
authors = ["kotano <[email protected]>"]
readme = "README.md"
repository = "https://github/kotano/python-project-lvl1"
classifiers = [
"Topic :: Games/Entertainment",
"Development Status :: 3 - Alpha",
]
packages = [
{ include = "brain_games" },
]
[tool.poetry.scripts]
brain-games = "brain_games.brain_game: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.source]]
name = "test_pypi"
url = "https://test.pypi.org/simple"
[tool.poetry.dependencies]
python = "^3.6.9"
prompt = "^0.4.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"