-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
73 lines (64 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "gpt-all-star"
version = "0.0.63"
description = "AI-powered code generation tool for scratch development of web applications with a team collaboration of autonomous AI agents. This is a research-project, and its primary value is to explore the possibility of autonomous AI agents."
authors = ["Yuya Kakui <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.urls]
Repository = "https://github.com/kyaukyuai/gpt-all-star"
[tool.poetry.dependencies]
python = ">=3.10.0,<3.11"
python-dotenv = "^1.0.0"
jinja2 = "^3.1.2"
langchain = ">=0.3,<0.4"
openai = "^1.6.1"
tiktoken = "^0.8.0"
rich = "^13.7.0"
prompt-toolkit = "^3.0.43"
termcolor = "^2.4.0"
gitpython = "^3.1.41"
requests = "^2.31.0"
typer = "^0.15.0"
pyfiglet = "^1.0.2"
langchain-openai = ">=0.2,<0.3"
selenium = "^4.17.2"
langgraph = ">=0.2.20,<0.3"
langchain-experimental = ">=0.3,<0.4"
llama-index = "^0.12.0"
tree-sitter-languages = "^1.10.2"
pygithub = "^2.2.0"
uvicorn = "^0.34.0"
fastapi = "^0.115.0"
langchain-anthropic = ">=0.3,<0.4"
[tool.poetry.scripts]
gpt-all-star = 'gpt_all_star.main:app'
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.4"
pre-commit = "^4.0.0"
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.11"
python-semantic-release = "^9.1.1"
pyright = "^1.1.354"
ruff = "^0.8.0"
pytest = "^8.1.1"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.semantic_release]
version_variable = "pyproject.toml:version"
version_source = "tag"
branch = "main"
upload_to_PyPI = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
[project.scripts]
gpt-all-star = 'gpt_all_star.main:app'
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
lint.select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
lint.ignore = ['W291', 'W292', 'W293']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"