-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (43 loc) · 1.01 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
[tool.poetry]
name = "openhands-aci"
version = "0.1.0"
description = "An Agent-Computer Interface (ACI) designed for software development agents OpenHands."
authors = ["OpenHands"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "openhands_aci/**/*" }
]
[tool.poetry.dependencies]
python = "^3.12"
numpy = "*"
pandas = "*"
scipy = "*"
networkx = "*"
litellm = "*"
gitpython = "*"
tree-sitter = "0.21.3"
grep-ast = "0.3.3"
diskcache = "^5.6.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.7.2"
pre-commit = "^4.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [
"poetry-core",
]
[tool.autopep8]
# autopep8 fights with mypy on line length issue
ignore = [ "E501" ]
[tool.black]
# prevent black (if installed) from changing single quotes to double quotes
skip-string-normalization = true
[tool.ruff.lint]
select = ["D"]
# ignore warnings for missing docstrings
ignore = ["D1"]
[tool.ruff.lint.pydocstyle]
convention = "google"