-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 973 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 973 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-commit"
version = "0.1.0"
description = "AI-powered conventional git commit messages."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Kasim Mohammed", email = "mrkasimmjk@gmail.com" }]
keywords = ["git", "commit", "ai", "llm", "conventional-commits", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git",
]
[project.urls]
Homepage = "https://github.com/kasimmj/ai-commit"
Issues = "https://github.com/kasimmj/ai-commit/issues"
[project.scripts]
ai-commit = "ai_commit.cli:main"
[project.optional-dependencies]
dev = ["pytest>=7.0", "ruff"]
[tool.setuptools.packages.find]
where = ["src"]