-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
72 lines (65 loc) · 1.2 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "adventure"
version = "2024.1"
description = "Project for Python 101 training."
authors = [
"František Fuka",
"Miroslav Biňas <[email protected]>"
]
readme = "readme.md"
[tool.poetry.dependencies]
python = "^3.12"
pydantic = "^2.5.3"
rich = "^13.7.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.6.0"
pytest = "^7.2.0"
faker = "^15.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = []
testpaths = ["tests/"]
python_files = ["test_*.py"]
markers = [
"wip: work in progress",
'down',
'up',
'east',
'west',
'north',
'south',
'take',
'drop',
'inventory',
'about',
'quit',
'look_around',
'help',
'commands',
'rooms',
'scenarios',
'happy_scenario',
'shot_by_enemy',
'plane_crash',
'free_fall',
'yellow_fog',
'items',
'whip',
'showel',
'parachute',
'map',
'key',
'heavy_chest',
'german_car',
'empty_seats',
'dictionary',
'diamond_on_ceiling',
'nazi_uniform',
'diamond',
'coconut_palm_tree',
'car_battery',
]
[tool.poetry.scripts]
indy2 = 'adventure.game:main'