-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (50 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
52 lines (50 loc) · 1.64 KB
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
47
48
49
50
51
52
[project]
name = "socketapi"
version = "0.2.0"
description = "SocketAPI is a lightweight Python framework for real-time WebSocket APIs, using a single multiplexed connection with endpoint-like actions and channel subscriptions."
license = "MIT"
authors = [
{ name = "SpaceShaman", email = "spaceshaman@tuta.io" }
]
readme = "README.md"
homepage = "https://github.com/SpaceShaman/socketapi"
documentation = "https://github.com/SpaceShaman/socketapi"
repository = "https://github.com/SpaceShaman/socketapi"
kwords = ["websocket", "realtime", "pydantic", "starlette", "async", "framework", "api"]
classifiers = [
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.12.5",
"starlette>=0.50.0",
]
[build-system]
requires = ["uv_build>=0.8.17,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"debugpy>=1.8.17",
"mkdocs-awesome-pages-plugin>=2.10.1",
"mkdocs-git-committers-plugin-2>=2.5.0",
"mkdocs-git-revision-date-localized-plugin>=1.5.0",
"mkdocs-include-markdown-plugin>=7.2.0",
"mkdocs-material>=9.7.0",
"pygments>=2.19.2",
"pymdown-extensions>=10.17.2",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"pytest-timeout>=2.4.0",
"uvicorn>=0.38.0",
"websockets>=15.0.1",
]