-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (40 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
41 lines (40 loc) · 1.07 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
[project]
name = "neon-rag"
version = "1.0.0"
description = "一个开源的企业级知识库系统,专为本地部署设计。"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [{ name = "杨飞", email = "yangfei86@gmail.com"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"alembic>=1.17.1",
"asyncpg>=0.30.0",
"celery>=5.5.3",
"colorlog>=6.10.1",
"fastapi>=0.121.1",
"greenlet>=3.2.4",
"hanlp>=2.1.3",
"httpx>=0.28.1",
"langdetect>=1.0.9",
"minio>=7.2.18",
"opencc>=1.1.9",
"psycopg2-binary>=2.9.11",
"pydantic-settings>=2.12.0",
"pydantic[email]>=2.12.4",
"python-jose[cryptography]>=3.5.0",
"redis>=7.0.1",
"sqlalchemy>=2.0.44",
"unstructured[all-docs]>=0.18.18",
"weaviate-client>=4.17.0",
]
[dependency-groups]
dev = [
"uvicorn[standard]>=0.38.0",
]