forked from day50-dev/Petsitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.49 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
[project]
name = "sub2api-auditer"
version = "1.2.1"
description = "将任意 OpenAI 兼容审核模型适配为 sub2api Prompt Audit 节点"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE.MIT" }
authors = [{ name = "CoderDoubleflower" }]
keywords = ["sub2api", "prompt-audit", "openai-compatible", "llm", "gateway"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
dependencies = [
"httpx>=0.27.0,<1.0",
"starlette>=0.40.0,<1.0",
"uvicorn>=0.30.0,<1.0",
]
[project.urls]
Homepage = "https://github.com/CoderDoubleflower/Sub2apiAuditer"
Repository = "https://github.com/CoderDoubleflower/Sub2apiAuditer"
Issues = "https://github.com/CoderDoubleflower/Sub2apiAuditer/issues"
[project.scripts]
sub2api-auditer = "sub2api_auditer.app:cli"
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/sub2api_auditer"]
[tool.hatch.build.targets.sdist]
include = [
"/src/sub2api_auditer",
"/tests",
"/README.md",
"/LICENSE.MIT",
"/Dockerfile",
"/docker-compose.yml",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ["src"]
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"