-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 826 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (36 loc) · 826 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
35
36
37
38
39
40
41
42
43
44
[project]
name = "nte-login"
version = "0.1.0"
description = "NTEUID 外置登录服务"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.130.0",
"uvicorn[standard]>=0.40.0",
"jinja2>=3.1.6",
"httpx>=0.28.0",
"loguru>=0.7.3",
"pycryptodome>=3.23.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.10.0",
"websockets>=14.0",
]
[dependency-groups]
dev = ["ruff>=0.8.0"]
[project.scripts]
start = "ntelogin.main:main"
[tool.setuptools.packages.find]
include = ["ntelogin*"]
[tool.setuptools.package-data]
ntelogin = ["templates/*.html", "templates/*.j2"]
[tool.uv]
package = true
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
extend-select = ["I"]
[tool.pyright]
include = ["ntelogin"]
pythonVersion = "3.11"
typeCheckingMode = "basic"