-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 926 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 926 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
[project]
name = "omnigraph"
version = "1.0.0"
description = "omnigraph 知识服务:知识库管理、自研入库(self ingestion)与自研检索(self retrieval)"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi==0.135.3",
"uvicorn[standard]==0.44.0",
"sqlalchemy>=2.0.0",
"aiomysql>=0.3.0",
"pymysql>=1.1.0",
"redis==7.1.0",
"pymilvus==2.6.11",
"nebula3-python>=3.8.0",
"minio>=7.2.0",
"hanlp==2.1.3",
"networkx>=3.0",
"numpy>=1.21.0",
"scipy>=1.15.0",
"httpx>=0.28.0",
"pydantic>=2.12.0",
"pydantic-settings>=2.12.0",
]
[project.optional-dependencies]
dev = [
"black>=24.0.0",
"isort>=5.13.0",
"flake8>=7.0.0",
]
[project.scripts]
omnigraph = "omnigraph.cli:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["omnigraph*"]