-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "tgit"
version = "0.12.0"
description = "Tool for Git Interaction Temptation (tgit): An elegant CLI tool that simplifies and streamlines your Git workflow, making version control a breeze."
authors = [{ name = "Jannchie", email = "jannchie@gmail.com" }]
dependencies = [
"rich>=13.9.4",
"pyyaml>=6.0.2",
"inquirer>=3.4.0",
"gitpython>=3.1.43",
"openai>=1.52.0",
"jinja2>=3.1.4",
"litellm>=1.59.9",
"gitpython>=3.1.44",
"inquirer>=3.4.0",
"beautifulsoup4>=4.13.3",
]
readme = { content-type = "text/markdown", file = "README.md" }
requires-python = ">= 3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = ["git", "tool", "changelog", "version", "commit"]
license = "MIT"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
upgrade = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["tgit"]
[project.scripts]
tgit = "tgit:cli.main"
[tool.ruff]
line-length = 140
select = ["ALL"]
ignore = [
"PGH",
"RUF003",
"BLE001",
"ERA001",
"FIX002",
"TD002",
"TD003",
"D",
"TRY300",
]
[dependency-groups]
dev = ["ruff>=0.9.4"]