-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
20 lines (18 loc) · 623 Bytes
/
pyproject.toml
File metadata and controls
20 lines (18 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.poetry]
name = "bfbc2-masterserver"
version = "0.1.0"
description = "Master Server Emulator for Battlefield: Bad Company 2 that aims to be complete replacement for the original master server, allowing to play the game without contacting EA servers."
authors = ["Marek Grzyb <marek@grzyb.dev>"]
license = "GPL-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = {extras = ["standard"], version = "^0.115.6"}
authlib = "^1.3.2"
bcrypt = "^4.2.1"
sqlmodel = "^0.0.22"
psycopg2 = "^2.9.10"
redis = "^5.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"