python3-cyberfusion-sync-support 1.2.7.4__tar.gz → 1.2.7.5__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.
Files changed (14) hide show
  1. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/PKG-INFO +6 -11
  2. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/README.md +0 -6
  3. python3_cyberfusion_sync_support-1.2.7.5/pyproject.toml +20 -0
  4. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/cyberfusion/SyncSupport/unix_users.py +2 -8
  5. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/python3_cyberfusion_sync_support.egg-info/PKG-INFO +6 -11
  6. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/python3_cyberfusion_sync_support.egg-info/SOURCES.txt +0 -1
  7. python3-cyberfusion-sync-support-1.2.7.4/pyproject.toml +0 -21
  8. python3-cyberfusion-sync-support-1.2.7.4/setup.py +0 -28
  9. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/setup.cfg +0 -0
  10. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/cyberfusion/SyncSupport/__init__.py +0 -0
  11. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/cyberfusion/SyncSupport/exceptions.py +0 -0
  12. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/python3_cyberfusion_sync_support.egg-info/dependency_links.txt +0 -0
  13. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/python3_cyberfusion_sync_support.egg-info/requires.txt +0 -0
  14. {python3-cyberfusion-sync-support-1.2.7.4 → python3_cyberfusion_sync_support-1.2.7.5}/src/python3_cyberfusion_sync_support.egg-info/top_level.txt +0 -0
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python3-cyberfusion-sync-support
3
- Version: 1.2.7.4
3
+ Version: 1.2.7.5
4
4
  Summary: Library for syncing objects (e.g. directories).
5
- Home-page: https://github.com/CyberfusionIO/python3-cyberfusion-sync-support
6
- Author: Cyberfusion
7
- Author-email: support@cyberfusion.io
8
- Platform: linux
5
+ Author-email: Cyberfusion <support@cyberfusion.io>
6
+ Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-sync-support
9
7
  Description-Content-Type: text/markdown
8
+ Requires-Dist: cached_property==1.5.2
9
+ Requires-Dist: python3-cyberfusion-common~=2.9
10
+ Requires-Dist: python3-cyberfusion-cluster-support~=1.0
10
11
 
11
12
  # python3-cyberfusion-sync-support
12
13
 
@@ -20,12 +21,6 @@ Run the following command to install the package from PyPI:
20
21
 
21
22
  pip3 install python3-cyberfusion-sync-support
22
23
 
23
- ## Generic
24
-
25
- Run the following command to create a source distribution:
26
-
27
- python3 setup.py sdist
28
-
29
24
  ## Debian
30
25
 
31
26
  Run the following commands to build a Debian package:
@@ -10,12 +10,6 @@ Run the following command to install the package from PyPI:
10
10
 
11
11
  pip3 install python3-cyberfusion-sync-support
12
12
 
13
- ## Generic
14
-
15
- Run the following command to create a source distribution:
16
-
17
- python3 setup.py sdist
18
-
19
13
  ## Debian
20
14
 
21
15
  Run the following commands to build a Debian package:
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "python3-cyberfusion-sync-support"
7
+ version = "1.2.7.5"
8
+ description = "Library for syncing objects (e.g. directories)."
9
+ readme = "README.md"
10
+ authors = [
11
+ { name = "Cyberfusion", email = "support@cyberfusion.io" },
12
+ ]
13
+ dependencies = [
14
+ "cached_property==1.5.2",
15
+ "python3-cyberfusion-common~=2.9",
16
+ "python3-cyberfusion-cluster-support~=1.0",
17
+ ]
18
+
19
+ [project.urls]
20
+ "Source" = "https://github.com/CyberfusionIO/python3-cyberfusion-sync-support"
@@ -283,10 +283,7 @@ class UNIXUserHomeDirectoryArchiveRestoration:
283
283
  os.path.join(self.temporary_path, self.store_path),
284
284
  self.filesystem_path,
285
285
  ):
286
- if (
287
- os.path.relpath(f, self.home_directory)
288
- not in self.exclude_paths
289
- ):
286
+ if os.path.relpath(f, self.home_directory) not in self.exclude_paths:
290
287
  continue
291
288
 
292
289
  destination_path = os.path.join(
@@ -301,10 +298,7 @@ class UNIXUserHomeDirectoryArchiveRestoration:
301
298
  os.path.join(self.temporary_path, self.store_path),
302
299
  self.filesystem_path,
303
300
  ):
304
- if (
305
- os.path.relpath(f, self.home_directory)
306
- not in self.exclude_paths
307
- ):
301
+ if os.path.relpath(f, self.home_directory) not in self.exclude_paths:
308
302
  continue
309
303
 
310
304
  destination_path = os.path.join(
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python3-cyberfusion-sync-support
3
- Version: 1.2.7.4
3
+ Version: 1.2.7.5
4
4
  Summary: Library for syncing objects (e.g. directories).
5
- Home-page: https://github.com/CyberfusionIO/python3-cyberfusion-sync-support
6
- Author: Cyberfusion
7
- Author-email: support@cyberfusion.io
8
- Platform: linux
5
+ Author-email: Cyberfusion <support@cyberfusion.io>
6
+ Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-sync-support
9
7
  Description-Content-Type: text/markdown
8
+ Requires-Dist: cached_property==1.5.2
9
+ Requires-Dist: python3-cyberfusion-common~=2.9
10
+ Requires-Dist: python3-cyberfusion-cluster-support~=1.0
10
11
 
11
12
  # python3-cyberfusion-sync-support
12
13
 
@@ -20,12 +21,6 @@ Run the following command to install the package from PyPI:
20
21
 
21
22
  pip3 install python3-cyberfusion-sync-support
22
23
 
23
- ## Generic
24
-
25
- Run the following command to create a source distribution:
26
-
27
- python3 setup.py sdist
28
-
29
24
  ## Debian
30
25
 
31
26
  Run the following commands to build a Debian package:
@@ -1,7 +1,6 @@
1
1
  README.md
2
2
  pyproject.toml
3
3
  setup.cfg
4
- setup.py
5
4
  src/cyberfusion/SyncSupport/__init__.py
6
5
  src/cyberfusion/SyncSupport/exceptions.py
7
6
  src/cyberfusion/SyncSupport/unix_users.py
@@ -1,21 +0,0 @@
1
- [tool.isort]
2
- profile = "black"
3
- line_length = 79
4
- known_first_party = ["cyberfusion"]
5
- default_section = "THIRDPARTY"
6
-
7
- [tool.black]
8
- line-length = 79
9
- exclude = '''
10
- (
11
- /(
12
- \.eggs # exclude a few common directories in the
13
- | \.git # root of the project
14
- | \.hg
15
- | \.mypy_cache
16
- | \.tox
17
- | \.venv
18
- | venv
19
- )/
20
- )
21
- '''
@@ -1,28 +0,0 @@
1
- """A setuptools based setup module."""
2
-
3
- from setuptools import setup
4
-
5
- with open("README.md", "r", encoding="utf-8") as fh:
6
- long_description = fh.read()
7
-
8
- setup(
9
- name="python3-cyberfusion-sync-support",
10
- version="1.2.7.4",
11
- description="Library for syncing objects (e.g. directories).",
12
- long_description=long_description,
13
- long_description_content_type="text/markdown",
14
- author="Cyberfusion",
15
- author_email="support@cyberfusion.io",
16
- url="https://github.com/CyberfusionIO/python3-cyberfusion-sync-support",
17
- platforms=["linux"],
18
- packages=[
19
- "cyberfusion.SyncSupport",
20
- ],
21
- package_dir={"": "src"},
22
- data_files=[],
23
- install_requires=[
24
- "cached_property==1.5.2",
25
- "python3-cyberfusion-common~=2.9",
26
- "python3-cyberfusion-cluster-support~=1.0",
27
- ],
28
- )