-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 975 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
40
41
42
43
[project]
name = "pi-backuper"
version = "1.0.2"
description = "Win11 raw USB/SD backup/restore/clone tool for removable media."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "cFunkz", email = "contact@uxscalelabs.online" }
]
keywords = [
"raspberry-pi",
"backup",
"restore",
"disk-imaging",
"windows",
"usb",
"sd-card"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Archiving :: Backup",
]
# Runtime dependencies ONLY
dependencies = [
"pywin32>=311",
"WMI>=1.5.1",
"psutil>=7.2.1",
]
[project.urls]
Homepage = "https://github.com/cfunkz/PI-Backuper"
Repository = "https://github.com/cfunkz/PI-Backuper"
Issues = "https://github.com/cfunkz/PI-Backuper/issues"
Releases = "https://github.com/cfunkz/PI-Backuper/releases"