-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (31 loc) · 836 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (31 loc) · 836 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pacpush"
description = "Utility to push an Arch host's package and AUR caches to other hosts"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.8"
keywords = ["pacman", "pacserve"]
dynamic = ["version"]
dependencies = [
"platformdirs",
"argparse-from-file",
"requests",
"pyalpm",
]
[[project.authors]]
name = "Mark Blakeney"
email = "mark.blakeney@bullet-systems.net"
[project.urls]
Homepage = "https://github.com/bulletmark/pacpush"
[project.scripts]
pacpush = "pacpush:main"
[tool.setuptools_scm]
version_scheme = "post-release"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
ignore = ["SIM115", "SIM905", "BLE001", "PLW1510", "DTZ"]
# vim:se sw=2: