feat: 第三优先级完善 — CI/CD、PyPI、pre-commit、CHANGELOG、贡献指南、基准测试、ADR
CI / Test (Python 3.13) (push) Has been cancelled

This commit is contained in:
2026-07-11 20:13:36 +08:00
parent 7e0b9553c8
commit 2ddb6de92f
13 changed files with 483 additions and 12 deletions
+23 -1
View File
@@ -1,7 +1,21 @@
[project]
name = "md-vector-db"
version = "0.1.0"
description = "Markdown 文档向量数据库,支持语义检索"
description = "Markdown 文档向量数据库语义检索、混合检索、REST API"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "刘航宇", email = "3364451258@qq.com"},
]
keywords = ["vector-database", "semantic-search", "rag", "chromadb", "markdown"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Markup",
]
requires-python = ">=3.13"
dependencies = [
"chromadb>=0.5.0",
@@ -15,6 +29,12 @@ dependencies = [
"rank-bm25>=0.2.2",
]
[project.urls]
Homepage = "https://github.com/LHY0125/md-vector-db"
Documentation = "https://github.com/LHY0125/md-vector-db#readme"
Repository = "https://github.com/LHY0125/md-vector-db"
Issues = "https://github.com/LHY0125/md-vector-db/issues"
[project.scripts]
md-vector-db = "src.cli.main:app"
@@ -24,6 +44,7 @@ pdf = ["pymupdf>=1.24.0"]
html = ["beautifulsoup4>=4.12.0"]
epub = ["ebooklib>=0.18"]
docx = ["markitdown>=0.1.0"]
bench = ["pytest-benchmark>=5.0"]
all = ["md-vector-db[pdf,html,epub,docx]", "requests>=2.31.0", "openai>=1.0.0"]
[build-system]
@@ -56,3 +77,4 @@ ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
norecursedirs = ["tests/benchmarks"]