-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 807 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hfsapi"
version = "0.1.10"
description = "HFS (HTTP File Server) Python API 客户端"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Multiple AI models (mixed)" },
]
dependencies = [
"httpx>=0.27.0",
"typer>=0.12.0",
]
[project.scripts]
hfs = "hfsapi.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]
# uv:开发依赖(PEP 735),uv sync 会一并安装
[dependency-groups]
dev = [
"pytest>=7.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"integration: 需要真实 HFS 服务器 (http://127.0.0.1:8280/data/)",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["hfsapi*"]