-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (35 loc) · 1.03 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
[tool.poetry]
name = "fastapi-sio"
version = "0.6.0"
description = "Socket.io for FastAPI with AsyncAPI documentation"
authors = ["Marian Hlavac <m@marianhlavac.cz>"]
keywords = ["fastapi", "socket.io", "asyncapi"]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Topic :: Communications",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = ">=0.111.0,<1.0.0"
python-socketio = ">=4.0.0,<6.0.0"
pydantic = "^2.8.2"
websockets = "^10.2"
packaging = "^24.1"
rfc3986 = ">=2.0.0"
[tool.poetry.dev-dependencies]
black = {version = "^22.1.0", allow-prereleases = true}
uvicorn = "^0.17.5"
pyright = "^1.1.226"
[tool.pyright]
exclude = ["typings","**/node_modules","**/__pycache__",".pytest_cache",".git",".venv"]
typeCheckingMode = "basic"
reportMissingImports = true
pythonVersion = "3.10"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"