-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "git-gerrit-bridge"
dynamic = ["version"]
description = 'Git subcommand to ease local branch management with gerrit.'
readme = "README.md"
requires-python = ">=3.9"
license = "GPL-3.0-or-later"
keywords = ["git", "gerrit"]
authors = [
{ name = "Bernhard Scheirle", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"packaging",
"plumbum",
"requests",
"rich",
]
[project.urls]
Documentation = "https://github.com/Scheirle/git-gerrit-bridget#readme"
Issues = "https://github.com/Scheirle/git-gerrit-bridge/issues"
Source = "https://github.com/Scheirle/git-gerrit-bridge"
[project.scripts]
git-gerrit = "git_gerrit.cli:GitGerrit"
[tool.hatch.version]
path = "git_gerrit/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["git_gerrit"]