-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.29 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
[tool.poetry]
name = "autonomous-engineer"
version = "0.1.0"
description = "An experiment to see how well a LLM-powered assistant is able to perform tasks of a software engineer"
authors = ["Motin <[email protected]>"]
license = "Apache-2.0 license"
readme = "README.md"
packages = [{include = "abilities"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
botocore = "^1.29.126" # required version constraint for rasa to install
rasa = "^3.5.10"
libtmux = "^0.22.1"
langchain = "^0.0.203"
openai = "^0.27.8"
gpt4all = "^0.3.4"
tokmon = "^0.2.1"
mitmproxy = "^9.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.6.1"
coverage = "^6.3.2"
freezegun = "^1.2.1"
poethepoet = "^0.13.1"
pre-commit = "^2.18.1"
notebook = "^6.5.4"
jupytext = "^1.14.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
test = ["pytest", "lint"]
pytest = "pytest --cov=abilities --verbose tests/"
lint = { shell = "find . -type d -name '.venv*' -prune -o -type f -name '*.py' -print0 | xargs -0 pre-commit run --files" }
notebooks = ["install_kernel", "jupyter"]
install_kernel = "python -m ipykernel install --user --name autonomous-engineer"
jupyter = 'jupyter-notebook notebooks/'
[tool.poe]
envfile = ".env"
[tool.ruff]
force-exclude = true