-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.29 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
[project]
name = "tgit"
version = "0.10.2"
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 = "[email protected]" }]
dependencies = [
"rich>=13.9.2",
"pyyaml>=6.0.2",
"inquirer>=3.4.0",
"gitpython>=3.1.43",
"openai>=1.52.0",
"jinja2>=3.1.4",
]
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.black]
line-length = 160
[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",
]