-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 845 Bytes
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 = "streamantix"
version = "0.1.0"
description = "Twitch chat bot for a Cemantix-like semantic word guessing game"
authors = ["Solution Libre <contact@solution-libre.fr>"]
readme = "README.md"
license = "AGPL-3.0-or-later"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12"
twitchio = "^2.10"
gensim = "^4.3"
python-dotenv = "^1.0"
starlette = "^0.52"
uvicorn = "^0.41"
websockets = "^14.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-asyncio = "^0.23"
pytest-cov = "^5.0"
httpx = "^0.28"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "--cov=bot --cov=game --cov=overlay --cov=auth --cov-report=term-missing"
[tool.coverage.run]
source = ["bot", "game", "overlay", "auth"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"