-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
76 lines (65 loc) · 1.63 KB
/
pyproject.toml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "text2graph_llm"
description = "convert text to graph with llm"
dynamic = ["version"]
authors = [
{ name = "Jason Lo", email = "[email protected]" },
{ name = "Iain McConnell" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"openai == 1.12.0",
"anthropic == 0.18.1",
"ollama == 0.1.6",
"requests == 2.31.0",
"python-dotenv == 1.0.1",
"pandas == 2.2.0",
"pyarrow == 15.0.0",
"tqdm == 4.66.1",
"tenacity == 8.2.3",
"rdflib == 7.0.0",
"sentence-transformers==2.6.1",
"weaviate-client==4.5.7",
]
[project.urls]
Repository = "https://github.com/UW-xDD/text2graph_llm"
[tool.hatch.version]
path = "text2graph/__init__.py"
[tool.hatch.build.targets.wheel]
include = ["text2graph/*.py", "text2graph/**/*.py", "text2graph/binaries/*"]
[project.optional-dependencies]
dev = [
"pre-commit==3.7.0",
"pytest==7.4.4",
"pytest-httpx==0.27.0",
"pytest-asyncio==0.23.6",
"ipykernel",
"altair",
"hatch",
]
chtc = [
"sqlalchemy-libsql==0.1.0",
"libsql-experimental==0.0.34",
"SQLAlchemy==2.0.29",
]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
text2graph_llm = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
chtc = { features = ["chtc"], solve-group = "default" }
dev = { features = ["dev"], solve-group = "default" }
[tool.pixi.tasks]
[tool.pytest.ini_options]
addopts = "-s --strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"serial"
]