-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (55 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
57 lines (55 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["flit_core >=3.12.0,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "atlas_rag"
[project]
name = "atlas-rag"
version = "0.0.5.post1"
authors = [
{name = "Jiaxin Bai", email = "jbai@connect.ust.hk"},
{name = "Hong Ting TSANG", email = "httsangaj@connect.ust.hk"},
{name = "Haoyu Huang", email = "haoyuhuang@link.cuhk.edu.hk"},
]
description = "AutoSchemaKG, a framework for fully autonomous knowledge graph construction that eliminates the need for predefined schemas."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"retrieval-augmented-generation",
"knowledge-graph",
"nlp",
]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy",
"networkx>=3.1",
"tqdm>=4.65.0",
"jsonschema>=4.17.3",
"neo4j>=5.8.0",
"fastapi>=0.95.0",
"uvicorn>=0.21.0",
"openai>=1.0.0",
"tenacity>=9.1.2",
"pandas>=2.0.0",
"sentence-transformers>=2.7.0",
"transformers",
"datasets",
"einops",
"accelerate>=1.7.0",
"nltk",
"graphdatascience",
"json_repair"
]
[project.optional-dependencies]
nvembed = [
"transformers>=4.42.4,<=4.47.1",
"sentence-transformers==2.7.0"
]