-
Notifications
You must be signed in to change notification settings - Fork 83
/
pyproject.toml
51 lines (44 loc) · 1.03 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
[tool.poetry]
name = "autopr"
version = "0.2.0"
description = ""
authors = ["Rafael Irgolic <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "autopr"}]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^1.10.9"
gitpython = "^3.1.31"
structlog = "^22.3.0"
tenacity = "^8.2.2"
pathspec = "^0.11.1"
pyyaml = "^6.0"
tiktoken = "^0.4.0"
jinja2 = "^3.1.2"
openai = "^0.27.9"
tree-sitter-languages = "^1.7.0"
[tool.poetry.group.test.dependencies]
pyright = "^1.1.306"
pytest = "^7.2.2"
pytest-subtests = "^0.10.0"
pytest-asyncio = "^0.21.1"
pytest-mock = "^3.11.1"
aioresponses = "^0.7.4"
types-tree-sitter-languages = "^1.8.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
exclude = ["**/resources/**"]
include = ["**/autopr/**"]
reportMissingTypeArgument = true
reportIncompatibleMethodOverride = true
[tool.black]
line-length = 100
target-version = ["py39"]
exclude = """
autopr/tests/resources
"""