-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.11 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
[tool.poetry]
name = "fastapi-chat-service-nosql"
version = "1.0.0"
description = "this is a chat service implemented using Fast API Framework."
authors = ["sinasezza <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.isort]
line_length = 79
profile = "black"
remove_redundant_aliases = true
[tool.ruff]
line-length = 79
[tool.poetry.dependencies]
python = "^3.10"
fastapi = {extras = ["all"], version = "^0.111.1"}
uvicorn = "^0.30.3"
python-socketio = {extras = ["asyncio-client"], version = "^5.11.3"}
pymongo = "^4.8.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
pre-commit = "^3.7.1"
ruff = "^0.5.4"
isort = "^5.13.2"
pydantic-settings = "^2.3.4"
pyjwt = "^2.8.0"
python-dotenv = "^1.0.1"
motor = "^3.5.1"
mypy = "^1.11.0"
bcrypt = "^4.2.0"
python-json-logger = "^2.0.7"
motor-types = {extras = ["motor"], version = "^1.0.0b4"}
pyupgrade = "^3.16.0"
requests = "^2.32.3"
pytest = "^8.3.2"
pytest-asyncio = "^0.23.8"
pydantic = "^2.8.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"