-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 837 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
36
37
[tool.poetry]
name = "cs2-battle-bot-api"
version = "0.0.35"
description = ""
authors = ["Adrian Ciolek <ciolek.adrian@protonmail.com>"]
readme = "README.md"
packages = [
{ include = "src/"},
]
[tool.poetry.dependencies]
python = "^3.11"
django = "^5.0.2"
httpx = "^0.27.0"
psycopg2-binary = "^2.9.9"
django-prefix-id = "^1.0.0"
steam = "^1.4.4"
django-redis = "^5.4.0"
djangorestframework = "^3.14.0"
djangorestframework-api-key = "^3.0.0"
rcon = "^2.4.6"
gunicorn = "^22.0.0"
django-oauth-toolkit = "^2.3.0"
drf-spectacular = "^0.27.2"
pytest-django = "^4.8.0"
django-filter = "^24.2"
toml = "^0.10.2"
pytest-mock = "^3.14.0"
django-cors-headers = "^4.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "src.cs2_battle_bot.test_settings"