forked from rdiff-backup/rdiff-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
101 lines (91 loc) · 2.83 KB
/
pyproject.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools>=67.0.0", "setuptools-scm>=7.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rdiff-backup"
authors = [
{name = "The rdiff-backup project", email = "[email protected]"}
]
description = "Backup and Restore utility, easy to use, efficient, locally and remotely usable"
readme = {file = "pyproject.readme.md", content-type = "text/markdown"}
requires-python = ">=3.6"
keywords = [
'backup', 'simple', 'easy', 'remote', 'incremental', 'efficient', 'cross-platform'
]
license = {text = "GPL-2.0-or-later"}
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX', # generic because users reported FreeBSD to work
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Topic :: System :: Archiving :: Backup',
]
dependencies = [
'importlib-metadata ; python_version < "3.8"',
'pywin32 ; platform_system == "Windows"',
'PyYAML',
]
dynamic = ["version"]
[project.optional-dependencies]
meta = [
'pylibacl ; os_name == "posix"',
'pyxattr ; platform_system == "Linux"',
'psutil',
]
[project.urls]
Homepage = "https://rdiff-backup.net"
Documentation = "https://rdiff-backup.net/#documentation"
Repository = "https://github.com/rdiff-backup/rdiff-backup"
Changelog = "https://github.com/rdiff-backup/rdiff-backup/blob/master/CHANGELOG.adoc"
Downloads = "https://github.com/rdiff-backup/rdiff-backup/releases"
[project.scripts]
rdiff-backup = "rdiffbackup.run:main"
rdiff-backup-delete = "rdiff_backup.run_delete:main"
rdiff-backup-statistics = "rdiff_backup.run_stats:main"
[tool.setuptools]
platforms = ['linux', 'win32']
include-package-data = true
package-data = {"rdiff_backup" = ["*.dll"]}
[tool.setuptools.data-files]
"share/man/man1" = [
"dist/rdiff-backup.1",
"dist/rdiff-backup-delete.1",
"dist/rdiff-backup-statistics.1",
]
"share/doc/rdiff-backup" = [
"CHANGELOG.adoc",
"COPYING",
"README.adoc",
"docs/credits.adoc",
"docs/DEVELOP.adoc",
"docs/examples.adoc",
"docs/FAQ.adoc",
"docs/migration.adoc",
"docs/Windows-README.adoc",
"docs/Windows-DEVELOP.adoc",
]
"share/bash-completion/completions" = ["tools/completions/bash/rdiff-backup"]
[tool.setuptools_scm]
[tool.bandit]
# we ignore the pickle warnings because we need pickle
# we also ignore asserts because there are too many false positives
skips = ["B301", "B101"]
[tool.mypy]
files = [
"src/rdiffbackup/singletons/",
"src/rdiff_backup/log.py",
]
ignore_missing_imports = true
ignore_errors = true
[[tool.mypy.overrides]]
module = [
"rdiffbackup.singletons.*",
"rdiff_backup.log",
]
ignore_errors = false