-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 843 Bytes
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
[build-system]
requires = ["hatchling", ]
build-backend = "hatchling.build"
[project]
name = "fint_auth_example"
description = "An FPS plugin for an unprotected API"
keywords = ["fint", "server", "fastapi", "pluggy", "plugins"]
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = ['fint_rtc_server']
[[project.authors]]
name = "Wh1isper"
email = "9573586@qq.com"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "BSD 3-Clause License"
[tool.check-manifest]
ignore = [".*", ]
[project.entry-points.fint_auth]
User = "fint_auth_example.backends:User"
current_user = "fint_auth_example.backends:current_user"
update_user = "fint_auth_example.backends:update_user"
websocket_auth = "fint_auth_example.backends:websocket_auth"
[tool.hatch.version]
path = "fint_auth_example/__init__.py"