-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.24 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
[tool.poetry]
name = "repo-review"
version = "0.1.0"
description = ""
authors = ["Foxicution <[email protected]>"]
readme = "README.md"
packages = []
[tool.poetry.dependencies]
python = "^3.10"
networkx = "^2.8.8"
openai = "^0.25.0"
protobuf = "3.20.*"
PyGithub = "^1.57"
pyvis = "^0.3.1"
streamlit = "^1.15.2"
toml = "^0.10.2"
toolz = "^0.12.0"
google-cloud-firestore = "^2.7.3"
option = "^2.1.0"
fastapi = {extras = ["all"], version = "^0.88.0"}
jinja2 = "^3.1.2"
tree-sitter-languages = "^1.5.0"
tree-sitter = "^0.20.1"
antlr4-tools = "^0.1"
antlr4-python3-runtime = "^4.11.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
ipykernel = "^6.19.2"
pre-commit = "^2.20.0"
scalene = "^1.5.16"
flake8 = "^6.0.0"
black = {version = "^23.1a1", allow-prereleases = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 94
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
line_length = 94
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true