-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (53 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
69 lines (53 loc) · 1.34 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling", ]
build-backend = "hatchling.build"
[project]
name = "fint_rtc_server"
description = "An FPS plugin for the Yjs API, support multiuser and using ino for YRoom"
keywords = ["fint-project", "yjs", "rtc", "multiuser", "fps"]
requires-python = ">=3.7"
dependencies = [
"fps >=0.0.8",
"jupyter_ydoc",
"ypy-websocket",
"watchfiles >=0.16.1,<1",
"fps-uvicorn",
"uvicorn[standard]",
"packaging",
"fint_core"
]
dynamic = ["version", ]
[project.optional-dependencies]
test = [
"mypy",
"types-setuptools",
"pytest",
"pytest-asyncio>=0.20.3",
"pytest-env",
"requests",
"websockets",
"pytest-asyncio",
"fint_test_app",
]
[project.scripts]
fint_server = "fps_uvicorn.cli:app"
[[project.authors]]
name = "Wh1isper"
email = "9573586@qq.com"
[project.urls]
Source = "https://github.com/actfint/fint-rtc-server"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "BSD 3-Clause License"
[tool.check-manifest]
ignore = [".*", ]
[project.entry-points.fps_router]
fint_rtc_server = "fint_rtc_server.routes"
[project.entry-points.fps_config]
fint_rtc_server = "fint_rtc_server.config"
[project.entry-points.fps_exception]
fint_rtc_server = "fint_rtc_server.exceptions"
[tool.hatch.version]
path = "fint_rtc_server/__init__.py"