forked from git-cola/git-cola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1.06 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
[project]
name = "git-cola"
authors = [
{name = "David Aguilar", email = "[email protected]"}
]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control :: Git",
]
description = "A sleek and powerful Git GUI"
dynamic = ["dependencies", "optional-dependencies", "version"]
license = {file = "COPYING"}
readme = "README.md"
[project.scripts]
cola = "cola.main:main"
git-cola = "cola.main:main"
git-dag = "cola.dag:main"
git-cola-sequence-editor = "cola.sequenceeditor:main"
[build-system]
requires = ["setuptools>=42", "setuptools_scm[toml]>=3.4.1"]
build-backend = "setuptools.build_meta"
[tool.cercis]
function-definition-extra-indent = false
line-length = 88
[tool.pytest-enabler.ruff]
addopts = "--ruff"
[tool.setuptools_scm]
fallback_version = "4.8.0"