-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpyproject.toml
48 lines (42 loc) · 840 Bytes
/
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 = "chatgpt-code-review"
version = "0.1.0"
description = ""
authors = ["Dominic Thorn <[email protected]>"]
readme = "README.md"
packages = [{include = "chatgpt_code_review"}]
[tool.poetry.dependencies]
python = ">=3.9.0,<3.11,!=3.9.7"
openai = "^0.27.2"
gitpython = "^3.1.31"
streamlit = "^1.20.0"
streamlit-tree-select = "^0.0.5"
tiktoken = "^0.4.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
known_first_party = "chatgpt_code_review"