/usr/lib/python3/dist-packages/Attic-0.10.egg-info is in attic 0.10-1.
This file is owned by root:root, with mode 0o664.
The actual contents of the file can be viewed below.
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 | Metadata-Version: 1.1
Name: Attic
Version: 0.10
Summary: Deduplicated backups
Home-page: https://pythonhosted.org/Attic/
Author: Jonas Borgström
Author-email: jonas@borgstrom.se
License: BSD
Description: What is Attic?
--------------
Attic is a deduplicating backup program. The main goal of attic is to provide
an efficient and secure way to backup data. The data deduplication
technique used makes Attic suitable for daily backups since only actual changes
are stored.
Easy to use
~~~~~~~~~~~
Initialze backup repository and create a backup archive::
$ attic init /usbdrive/my-backup.attic
$ attic create -v /usbdrive/my-backup.attic::documents ~/Documents
Main features
~~~~~~~~~~~~~
Space efficient storage
Variable block size deduplication is used to reduce the number of bytes
stored by detecting redundant data. Each file is split into a number of
variable length chunks and only chunks that have never been seen before are
compressed and added to the repository.
Optional data encryption
All data can be protected using 256-bit AES encryption and data integrity
and authenticity is verified using HMAC-SHA256.
Off-site backups
attic can store data on any remote host accessible over SSH as long as
attic is installed.
Backups mountable as filesystems
Backup archives are mountable as userspace filesystems for easy backup
verification and restores.
What do I need?
---------------
Attic requires Python 3.2 or above to work. Besides Python attic also requires
msgpack-python and sufficiently recent OpenSSL (>= 1.0.0).
How do I install it?
--------------------
::
$ pip install Attic
Where are the docs?
-------------------
Go to https://pythonhosted.org/Attic/ for a prebuilt version of the docs. You
can also build them yourself form the docs folder.
Where are the tests?
--------------------
The tests are in the attic/testsuite package. To run the test suite use the
following command::
$ python -m attic.testsuite.run
Platform: Linux
Platform: MacOS X
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: System :: Archiving :: Backup
|