-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.39 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "backup-pro"
version = "1.1.0"
authors = [{ name = "Halit Simsek", email = "mail.simsekhalit@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Archiving :: Backup"
]
dependencies = ["attrs ~= 26.1", "cattrs ~= 26.1"]
description = "A comprehensive backup tool that makes the life easier when backing up/restoring configurations, files, packages of the system."
keywords = ["apt", "archive", "backup", "backup-pro", "cli", "configuration", "diff", "flatpak", "gsettings", "package",
"pro", "recovery", "restore", "scan", "snap"]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.10"
[project.optional-dependencies]
ujson = ["ujson ~= 5.12; implementation_name == 'cpython'"]
[project.scripts]
backup-pro = "backup_pro.cli:main"
[project.urls]
"Homepage" = "https://github.com/simsekhalit/backup-pro"