-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 850 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
[project]
name = "slice"
version = "0.1.0"
description = "Semantic Language-Indexed Code Extraction."
readme = "README.md"
authors = [
{ name = "Oscar Arambula", email = "peteroso876@gmail.com" },
{ name = "Omar Guzmán" },
{ name = "Oscar Beltran", email = "oscarbeltranvillegas@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"langgraph>=0.4.8",
"typer>=0.16.0",
"python-dotenv>=1.1.0",
"openai-agents>=0.0.17",
"langchain_neo4j",
"numpy",
"neo4j",
"pykagcee",
"pyastran",
]
[project.scripts]
slice = "slice:app"
[build-system]
requires = ["uv_build>=0.8.14,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"ty>=0.0.1a8",
]
[tool.uv.sources]
pykagcee = { git = "ssh://git@github.com/miosomos/pykagcee" }
pyastran = { git = "ssh://git@github.com/miosomos/pyastran" }