-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.02 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
[tool.poetry]
name = "codebased"
version = "0.6.2"
description = "AI-powered code search for the terminal and beyond."
authors = ["Max Conradt <mhconradt@protonmail.com>"]
readme = "README.md"
repository = "https://github.com/codebased-sh/codebased"
[tool.poetry.dependencies]
python = "^3.9"
tree-sitter = "^0.23"
openai = "^1.42.0"
tree-sitter-c = "^0.23"
tree-sitter-c-sharp = "^0.23"
tree-sitter-cpp = "^0.23"
tree-sitter-go = "^0.23"
tree-sitter-java = "^0.23"
tree-sitter-javascript = "^0.23"
tree-sitter-php = "^0.23"
tree-sitter-python = "^0.23"
tree-sitter-ruby = "^0.23"
tree-sitter-rust = "^0.23"
tree-sitter-typescript = "^0.23"
faiss-cpu = "^1.8.0.post1"
toml = "^0.10.2"
tiktoken = "^0.7.0"
colorama = "^0.4.6"
watchdog = "^5.0.0"
chardet = "^5.2.0"
textual = "^0.79.1"
typer = "^0.12.5"
[tool.poetry.scripts]
codebased = "codebased.main:cli"
[tool.poetry.group.dev.dependencies]
ipython = "^7.0"
textual-dev = "^1.6.1"
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"