|
| 1 | +[project] |
| 2 | +name = "borgbackup" |
| 3 | +dynamic = ["version"] |
| 4 | +authors = [{name="The Borg Collective (see AUTHORS file)"}] |
| 5 | +maintainers = [ |
| 6 | + { name= "Thomas Waldmann", email= "[email protected]"}, |
| 7 | +] |
| 8 | +description = "Deduplicated, encrypted, authenticated and compressed backups" |
| 9 | +readme = "README.rst" |
| 10 | +requires-python = ">=3.9" |
| 11 | +keywords = ["backup", "borgbackup"] |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 4 - Beta", |
| 14 | + "Environment :: Console", |
| 15 | + "Intended Audience :: System Administrators", |
| 16 | + "License :: OSI Approved :: BSD License", |
| 17 | + "Operating System :: POSIX :: BSD :: FreeBSD", |
| 18 | + "Operating System :: POSIX :: BSD :: OpenBSD", |
| 19 | + "Operating System :: POSIX :: BSD :: NetBSD", |
| 20 | + "Operating System :: MacOS :: MacOS X", |
| 21 | + "Operating System :: POSIX :: Linux", |
| 22 | + "Programming Language :: Python", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Topic :: Security :: Cryptography", |
| 28 | + "Topic :: System :: Archiving :: Backup", |
| 29 | +] |
| 30 | +license = {text="BSD"} |
| 31 | +dependencies = [ |
| 32 | + "msgpack >=1.0.3, <=1.0.5", |
| 33 | + "packaging", |
| 34 | + "platformdirs >=3.0.0, <4.0.0; sys_platform == 'darwin'", # for macOS: breaking changes in 3.0.0, |
| 35 | + "platformdirs >=2.6.0, <4.0.0; sys_platform != 'darwin'", # for others: 2.6+ works consistently. |
| 36 | + "argon2-cffi", |
| 37 | +] |
| 38 | + |
| 39 | +[project.optional-dependencies] |
| 40 | +llfuse = ["llfuse >= 1.3.8"] |
| 41 | +pyfuse3 = ["pyfuse3 >= 3.1.1"] |
| 42 | +nofuse = [] |
| 43 | + |
| 44 | +[project.urls] |
| 45 | +"Homepage" = "https://borgbackup.org/" |
| 46 | +"Bug Tracker" = "https://github.com/borgbackup/borg/issues" |
| 47 | +"Documentation" = "https://borgbackup.readthedocs.io/" |
| 48 | +"Repository" = "https://github.com/borgbackup/borg" |
| 49 | +"Changelog" = "https://github.com/borgbackup/borg/blob/master/docs/changes.rst" |
| 50 | + |
| 51 | +[project.scripts] |
| 52 | +borg = "borg.archiver:main" |
| 53 | +borgfs = "borg.archiver:main" |
| 54 | + |
1 | 55 | [build-system]
|
2 | 56 | requires = ["setuptools", "pkgconfig", "Cython", "setuptools_scm[toml]>=6.2"]
|
3 | 57 | build-backend = "setuptools.build_meta"
|
|
0 commit comments