-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.53 KB
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
[tool.poetry]
name = "diffmind"
version = "0.1.1"
description = "AI-powered commit message generator (CLI + git hook) with delightful terminal UX"
authors = ["DiffMind Contributors <random1k11@gmail.com>"]
readme = "README.md"
packages = [{ include = "diffmind" }]
license = "MIT"
keywords = [
"git", "commit", "cli", "hook", "openai", "ai", "productivity"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Version Control :: Git"
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
rich = "^13.7.1"
typer = {version = "^0.12.3", extras = ["all"]}
gitpython = "^3.1.43"
pydantic = "^2.8.2"
typing-extensions = "^4.12.2"
tomli = {version = "^2.0.1", python = "<3.11"}
openai = {version = ">=1.0.0", optional = true}
InquirerPy = "^0.3.4"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.2"
black = "^24.8.0"
[tool.poetry.extras]
ai = ["openai"]
[tool.poetry.scripts]
diffmind = "diffmind.cli:app"
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.black]
line-length = 100
target-version = ["py39"]
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"