-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.1 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
[tool.poetry]
name = "git-vector"
version = "0.1.0-rc1"
description = "Prompt OpenAI models with git repository context"
authors = ["Markus Blomqvist <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
git-vector = "git_vector.git_vector:main"
[tool.poetry.dependencies]
python = "^3.11"
openai = "^1.47.1"
gitpython = "^3.1.43"
numpy = "^2.1.1"
scikit-learn = "^1.5.2"
click = "^8.1.7"
python-dotenv = "^1.0.1"
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
pre-commit = "^3.8.0"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
mypy = "^1.11.2"
pandas-stubs = "^2.2.3"
types-Pygments = "^2.18.0"
types-tqdm = "^4.66.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py39"]
exclude = '''
/(
\.git
| \.venv
| env
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
skip = [".venv", "venv", "env", "__pycache__", ".git", "build", "dist"]