reverberator 0.16__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: reverberator
3
+ Version: 0.16
4
+ Summary: A inotify based tool to create REVERBs (REcursive VERsioning Backup) using symlinks
5
+ Author-email: Yufei Pan <pan@zopyr.us>
6
+ License-Expression: GPL-3.0-or-later
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: POSIX :: Linux
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: argparse>=1.4.0
12
+ Requires-Dist: inotify-simple>=1.3.5
13
+ Requires-Dist: multicmd>=1.29
14
+ Requires-Dist: tee-logger>=6.34
15
+ Requires-Dist: tsvz>=3.25
16
+ Requires-Dist: xxhash>=3.5.0
17
+
18
+ Design decision:
19
+ When reverberator is in cold start, will not calculate hash to do space efficient move operations to vault.
20
+ When restarting reverberator, will do one backup that will only handle create, modify, delete, attrib.
@@ -0,0 +1,3 @@
1
+ Design decision:
2
+ When reverberator is in cold start, will not calculate hash to do space efficient move operations to vault.
3
+ When restarting reverberator, will do one backup that will only handle create, modify, delete, attrib.
@@ -0,0 +1,25 @@
1
+ [project]
2
+ name = "reverberator"
3
+ version = "0.16"
4
+ description = "A inotify based tool to create REVERBs (REcursive VERsioning Backup) using symlinks"
5
+ readme = "README.md"
6
+ requires-python = ">=3.7"
7
+ license = "GPL-3.0-or-later"
8
+ authors = [
9
+ { name = "Yufei Pan", email = "pan@zopyr.us" },
10
+ ]
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3",
13
+ "Operating System :: POSIX :: Linux",
14
+ ]
15
+ dependencies = [
16
+ "argparse>=1.4.0",
17
+ "inotify-simple>=1.3.5",
18
+ "multicmd>=1.29",
19
+ "tee-logger>=6.34",
20
+ "tsvz>=3.25",
21
+ "xxhash>=3.5.0",
22
+ ]
23
+
24
+ [project.scripts]
25
+ reverberator = "reverberator:main"
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: reverberator
3
+ Version: 0.16
4
+ Summary: A inotify based tool to create REVERBs (REcursive VERsioning Backup) using symlinks
5
+ Author-email: Yufei Pan <pan@zopyr.us>
6
+ License-Expression: GPL-3.0-or-later
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: POSIX :: Linux
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: argparse>=1.4.0
12
+ Requires-Dist: inotify-simple>=1.3.5
13
+ Requires-Dist: multicmd>=1.29
14
+ Requires-Dist: tee-logger>=6.34
15
+ Requires-Dist: tsvz>=3.25
16
+ Requires-Dist: xxhash>=3.5.0
17
+
18
+ Design decision:
19
+ When reverberator is in cold start, will not calculate hash to do space efficient move operations to vault.
20
+ When restarting reverberator, will do one backup that will only handle create, modify, delete, attrib.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ reverberator.py
4
+ reverberator.egg-info/PKG-INFO
5
+ reverberator.egg-info/SOURCES.txt
6
+ reverberator.egg-info/dependency_links.txt
7
+ reverberator.egg-info/entry_points.txt
8
+ reverberator.egg-info/requires.txt
9
+ reverberator.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ reverberator = reverberator:main
@@ -0,0 +1,6 @@
1
+ argparse>=1.4.0
2
+ inotify-simple>=1.3.5
3
+ multicmd>=1.29
4
+ tee-logger>=6.34
5
+ tsvz>=3.25
6
+ xxhash>=3.5.0
@@ -0,0 +1 @@
1
+ reverberator