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
|
[project]
name = "copy_borg"
version = "0.0.0"
description = ""
authors = [{ name = "Gregor Kleen", email = "gkleen@yggdrasil.li" }]
requires-python = "~=3.12"
dependencies = [
"humanize>=4.6.0,<5",
"tqdm>=4.65.0,<5",
"python-dateutil>=2.8.2,<3",
"xdg>=6.0.0,<7",
"pyprctl>=0.1.3,<0.2",
"halo>=0.0.31,<0.0.32",
"unshare>=0.22",
]
[project.scripts]
copy_borg = "copy_borg.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["copy_borg"]
|