-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.03 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
38
39
40
[tool.poetry]
name = "brain-games"
version = "0.1.9"
description = "First project on hexlet"
authors = ["Konstantin <[email protected]>"]
packages = [
{ include = "brain_games" },
]
repository = "https://github.com/mnogom/python-project-lvl1"
classifiers = [
"Topic :: Education",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Puzzle Games",
]
[tool.poetry.dependencies]
python = "^3.7"
prompt = "^0.4.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[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"
# Add test repository source
[[tool.poetry.source]]
name = "testPyPi"
url = "https://test.pypi.org/legacy/"
secondary = true