-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.54 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smart-git-commit"
version = "0.3.4"
description = "AI-powered Git commit workflow tool"
readme = "README.md"
authors = [
{name = "Edgar Zorrilla", email = "edgar@izignamx.com"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Version Control :: Git",
]
requires-python = ">=3.7"
dependencies = ["psutil>=5.9.0", "requests>=2.20.0"]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"coverage>=6.0.0",
"black>=22.0.0",
"isort>=5.0.0",
"ruff>=0.0.85",
]
[project.urls]
Homepage = "https://github.com/CripterHack/smart-git-commit"
Issues = "https://github.com/CripterHack/smart-git-commit/issues"
[project.scripts]
smart-git-commit = "smart_git_commit.smart_git_commit:main"
[tool.setuptools]
packages = ["smart_git_commit"]
[tool.isort]
profile = "black"
line_length = 88
[tool.black]
line-length = 88
target-version = ["py37"]
[tool.ruff]
line-length = 88
target-version = "py37"
select = ["E", "F", "I", "W"]