-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·42 lines (34 loc) · 1.13 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
[tool.poetry]
name = "senior-swe-ai"
version = "0.1.3"
description = "SeniorSWE-AI is a command-line interface for in-context embedding that leverages the semantic comprehension capabilities of large language models to analyze the intended codebase and engage in a conversation with it, mimicking the behavior of a seasoned software engineer. "
authors = ["Younis <23105954+Younis-Ahmed@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9.1,<3.12"
inquirer = "^3.2.4"
openai = "^1.14.0"
toml = "^0.10.2"
esprima = "^4.0.1"
tree-sitter = "^0.21.0"
tree-sitter-languages = "^1.10.2"
langchain = "^0.1.12"
langchain-community = "^0.0.28"
langchain-text-splitters = "^0.0.1"
langchain-openai = "^0.0.8"
tiktoken = "^0.6.0"
rich = "^13.7.1"
altair = "^5.2.0"
chardet = "^5.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pylint = "^3.1.0"
pytest-mock = "^3.12.0"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
"Repository" = "https://github.com/Younis-Ahmed/senior-swe-ai"
[tool.poetry.scripts]
sen-ai = "senior_swe_ai.cli:main"