-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.43 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
59
60
61
62
63
64
65
[project]
name = "acmsg"
version = "0.3.1"
description = "Automatic git commit message generator using AI models & the OpenRouter API."
requires-python = ">=3.12"
authors = [{ email = "quinn@qeden.dev" }, { name = "Quinn Edenfield" }]
maintainers = [{ email = "quinn@qeden.dev" }, { name = "Quinn Edenfield" }]
keywords = [
"AI",
"OpenRouter",
"artificial intelligence",
"commit",
"commit message",
"git",
]
dependencies = [
"colorama (>=0.4.6,<0.5.0)",
"jinja2>=3.1.6",
"pyyaml (>=6.0.2,<7.0.0)",
"requests (>=2.32.3,<3.0.0)",
"types-colorama>=0.4.15.20240311",
"types-pyyaml>=6.0.12.20250402",
"types-requests>=2.32.0.20250328",
]
[project.urls]
repository = "https://github.com/quinneden/acmsg"
[project.scripts]
acmsg = "acmsg.__main__:main"
[dependency-groups]
dev = [
"commitizen>=4.6.3",
"ipython>=9.2.0",
"mypy>=1.15.0",
"pytest-cov>=4.1.0",
"pytest>=7.4.0",
]
[build-system]
requires = ["setuptools >= 78.1.0"]
build-backend = "setuptools.build_meta"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
ignored_tag_formats = ["latest"]
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
[tool.pytest.ini_options]
python_files = ["test_*.py"]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["acmsg*"]
namespaces = false