-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.14 KB
/
pyproject.toml
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
[project]
name = "autocommitt"
version = "v0.3.0"
description = "A CLI tool for generating editable commit messages locally using Ollama."
authors = [
{ name = "Spartan-71", email = "[email protected]" }
]
license = { file = "LICENSE" } # You can also use 'file = "LICENSE"' if you have a LICENSE file
keywords = [
"autocommit",
"aicommit",
"git automation",
"CLI tool",
"local AI"
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X"
]
project.urls = "https://github.com/Spartan-71/autocommitt"
requires-python = ">=3.12"
dependencies = [
"ollama>=0.4.4",
"platformdirs>=4.3.6",
"psutil>=6.1.1",
"requests>=2.32.3",
"typer>=0.15.1",
"pyreadline3; sys_platform == 'win32'"
]
[project.scripts]
autocommitt = "autocommitt.cli.main:app"
act = "autocommitt.cli.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
requires-python = ">3.10"