forked from adilzubair/cortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 896 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (43 loc) · 896 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
42
43
44
45
46
47
[project]
name = "cortex"
version = "0.1.0"
description = "Cortex: Your Local AI-Powered Codebase Assistant"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"chromadb>=1.4.0",
"dotenv>=0.9.9",
"gitpython>=3.1.46",
"langchain>=1.2.3",
"langchain-chroma>=1.1.0",
"langchain-community>=0.4.1",
"langchain-ollama>=1.0.1",
"langchain-openai>=1.1.7",
"pdfplumber>=0.11.9",
"python-docx>=1.2.0",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"rich>=14.2.0",
"typer>=0.21.1",
"jedi>=0.19.2",
"watchdog>=4.0.0",
"deepagents>=0.3.5",
]
[project.scripts]
cortex = "main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
include = [
"main.py",
"agents",
"core",
"embeddings",
"indexing",
"ingestion",
"llm",
"vectorstore",
]