-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (63 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
68 lines (63 loc) · 1.82 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
66
67
68
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "commitlm"
version = "1.0.9"
readme = {file = "README.md", content-type = "text/markdown"}
description = "AI-powered Git Documentation & Commit Messages"
authors = [{name = "Sin Liang Lee", email = "sinlianglee110@gmail.com"}]
license = "Apache-2.0"
requires-python = ">=3.9"
keywords = ["git", "commit", "documentation", "ai", "llm", "automation", "developer-tools"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"gitpython",
"transformers>=4.35.0",
"torch>=2.0.0",
"accelerate",
"optimum[cpu]",
"click>=8.0",
"pydantic>=2.0",
"jinja2",
"rich",
"python-dotenv",
"watchdog",
"google-genai",
"google-api-core",
"anthropic",
"openai",
"InquirerPy"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
"black",
"ruff",
"mypy",
"build",
"twine",
]
[project.scripts]
commitlm = "commitlm.cli.commands:main"
[project.urls]
Homepage = "https://github.com/LeeSinLiang/commitLM"
Repository = "https://github.com/LeeSinLiang/commitLM"
Issues = "https://github.com/LeeSinLiang/commitLM/issues"
Changelog = "https://github.com/LeeSinLiang/commitLM/releases"
[tool.setuptools.packages.find]
include = ["commitlm*"]
exclude = ["changelogs*", "docs*"]