-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
44 lines (40 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fastapi-distributed-websocket"
version = "0.2.0"
authors = [
{ name="Andrea Tedeschi", email="[email protected]" },
]
description = "Large scale WebSocket with FastAPI"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Framework :: AsyncIO",
"Framework :: FastAPI",
]
license = {file = "LICENSE"}
keywords = ["asyncio", "fastapi", "websocket", "distributed", "pubsub"]
dependencies = [
"redis>=4.3.1",
"fastapi>=0.75.2",
"websockets>=10.3",
]
[project.urls]
homepage = "https://github.com/DontPanicO/fastapi-distributed-websocket"
[tool.setuptools]
platforms = ["POSIX"]
package-data = { "distributed_websocket" = ["py.typed"] }
[tool.setuptools.packages.find]
exclude = ["tests"]