-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 826 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
[tool.poetry]
name = "code-agent"
version = "0.2.0.0"
description = "🦾 🤖 ChatGPT-based Agent tool for support your software development."
authors = ["Shingo Morimoto <gonsix3@gmail.com>"]
repository = "https://github.com/Gonsix/Code-Agent"
readme = "README.md"
license = "MIT"
keywords = ["ChatGPT", "LangChain", "LLM", "AI-Tool", "Git"]
maintainers = [
"Shingo Morimoto <gonsix3@gmail.com>",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
openai = "^1.13.3"
langchain = "^0.1.10"
langchain-openai = "^0.0.8"
langchain-community = "^0.0.25"
gitpython = "^3.1.42"
python-dotenv = "^1.0.1"
typer = {extras = ["all"], version = "^0.9.0"}
dynaconf = "^3.2.4"
rich = "^13.7.1"
[tool.poetry.scripts]
codex = 'code_agent.cli:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"