-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.13 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
58
59
60
61
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sent_graph_rag"
version = "0.1.0"
description = "Sentence Graph RAG system for enhanced retrieval augmented generation"
authors = [{ name = "Tyrin Todd", email = "swagginty@gmail.com" }]
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"spacy>=3.0.0",
"fastcoref",
"pyarrow",
"pandas",
"sentence-transformers",
"torch>=1.7.0",
"transformers",
"datasets",
"pyvis==0.1.9",
"disjoint_set",
"fastavro",
"lmdb",
"igraph",
"tqdm"
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"isort",
"flake8",
]
visualization = [
"networkx",
"matplotlib",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.isort]
profile = "black"
line_length = 88