-
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.14 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.14 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
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"
[project]
name = "diffmage"
version = "0.7.0"
description = "AI-powered git commit message generator with semantic analysis"
readme = "README.md"
authors = [
{name = "Nick Galluzzo", email = "n.galluzzo@gmail.com"}
]
requires-python = ">=3.11"
dependencies = [
"typer>=0.9.0",
"rich>=13.7.0",
"pydantic>=2.5.0",
"python-magic>=0.4.27",
"GitPython>=3.1.0",
"unidiff>=0.7.0",
"litellm>=1.74.9.post1",
]
[project.scripts]
diffmage = "diffmage.cli.main:app"
[tool.uv]
dev-dependencies = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
"mypy>=1.5.0",
"types-unidiff",
"debugpy>=1.8.0",
"pre-commit>=4.2.0",
]
[tool.mypy]
strict = true
python_version = "3.11"
files = ["src/", "tests/"]
show_error_codes = true
show_column_numbers = true
show_error_context = true
incremental = true
cache_dir = ".mypy_cache"
[[tool.mypy.overrides]]
module = ["debugpy.*"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disallow_incomplete_defs = false