-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.14 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
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "sbackup-cli"
version = "2.0.0"
description = "智能文件夹备份工具,支持增量备份和自定义配置"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPL-3.0"}
authors = [
{name = "xiatianxuan", email = "xiatianxuan2025@163.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Archiving :: Backup",
]
dependencies = [
"minio>=7.2.20",
"paramiko>=4.0.0",
"py7zr>=1.1.0",
"reedsolo>=1.7.0",
"tqdm>=4.67.3",
"watchdog>=6.0.0",
"zstandard>=0.25.0",
]
[project.scripts]
sbackup = "sbackup:run"
[project.urls]
Homepage = "https://github.com/xiatianxuan/sbackup"
Repository = "https://github.com/xiatianxuan/sbackup"
[dependency-groups]
dev = [
"coverage>=7.13.5",
"pytest>=9.0.3",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["sbackup*"]
[tool.setuptools.package-data]
sbackup = ["locales/*.json"]