-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.2 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
[project]
name = "zread"
dynamic = ["version"]
description = "Zread 让你和你的 AI 都更懂代码。代码不用看,直接问。连接 zread.ai,AI 驱动的 GitHub 项目文档。"
readme = "README.md"
authors = [
{ name = "ejfkdev", email = "152914458+ejfkdev@users.noreply.github.com" },
]
requires-python = ">=3.10"
dependencies = [
"httpx>=0.25.0",
"fastmcp>=3.0.0",
"typer>=0.9.0",
"arrow>=1.3.0",
"darkdetect>=0.8.0",
"python-i18n>=0.3.9",
"rich>=13.7.0",
"Pillow>=10.0.0",
"textual-image>=0.2.0",
"typing-extensions>=4.8.0",
'tomli>=2.0.0; python_version < "3.11"',
]
license = { text = "MIT" }
keywords = ["mcp", "context-protocol", "github", "ai", "zread"]
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["zread"]
[tool.setuptools.package-data]
zread = ["locales/**/*.yml"]
[tool.setuptools_scm]
write_to = "zread_version.py"
local_scheme = "no-local-version"
[project.scripts]
zread = "zread:main"
[project.urls]
Homepage = "https://github.com/ejfkdev/zread"
Repository = "https://github.com/ejfkdev/zread"
Issues = "https://github.com/ejfkdev/zread/issues"