-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (53 loc) · 1.56 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
[tool.poetry]
name = "g3"
version = "0.5.0"
description = "An AI-powered CLI tool to help you write better commit messages and PRs."
authors = [
"Panos Antonakos <[email protected]>",
"Angelos Mitsios <[email protected]>",
"Ioannis Karachristos <[email protected]>",
"Konstantinos Papadakis <[email protected]>",
"Konstantinos Rousopoulos <[email protected]>",
"Kostis Kyrkos <[email protected]>",
"Petros Lambropoulos <[email protected]>",
"Thomas Toumpoulis <[email protected]>",
]
readme = "README.md"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.scripts]
g3 = "g3.main:app"
[tool.poetry.dependencies]
python = "^3.11"
typer = { extras = ["all"], version = ">=0.9,<0.13" }
openai = ">=1.35.10,<1.41.0"
asyncio = "^3.4.3"
inquirer = "^3.1.3"
pydantic = { version = ">=1.10.10,<3.0.0", extras = ["dotenv"] }
tiktoken = ">=0.6,<0.8"
pygithub = ">=1.59,<3.0"
pyperclip = "^1.8.2"
pydantic-settings = "^2.2.1"
[tool.poetry.group.lint.dependencies]
isort = "^5.12.0"
black = "^24.4.2"
flake8 = ">=6,<8"
mypy = "^1.4.1"
[tool.poetry.group.test.dependencies]
pytest = ">=7.4,<9.0"
pytest-cov = ">=4.1,<6.0"
faker = ">=19.1,<27.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
[tool.mypy]
ignore_missing_imports = true
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-version-plugin]
source = "git-tag"