-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (25 loc) · 902 Bytes
/
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
[project]
name = "gittools"
version = "1.3.1"
description = "Miscellaneous utilities to get more out of git"
authors = [{ name = "Alice Purcell", email = "[email protected]" }]
requires-python = ">= 3.12"
dynamic = ["dependencies"]
[project.scripts]
git-continuous-fetch = "gittools.continuous_fetch:main"
git-graph-branch = "gittools.git_graph_branch:main"
git-mirror = "gittools.git_mirror:main"
git-pr = "gittools.git_pr:main"
git-rebase-branch = "gittools.git_rebase_branch:main"
git-split-pick = "gittools.git_split_pick:main"
git-watch-status = "gittools.watch_status:main"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "PYI", "RUF", "SIM", "UP", "W"]
isort.split-on-trailing-comma = false
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[build-system]
requires = ["setuptools >= 75"]
build-backend = "setuptools.build_meta"