codexfer 0.2.0__tar.gz → 0.2.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codexfer
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: End-to-end encrypted code sharing for developers.
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: typer>=0.12
@@ -0,0 +1,2 @@
1
+ """CodeXfer: end-to-end encrypted code sharing."""
2
+ __version__ = "0.2.1"
@@ -17,6 +17,8 @@ DEFAULT_EXCLUDES = [
17
17
  ".mypy_cache", ".mypy_cache/*", ".pytest_cache", ".pytest_cache/*",
18
18
  "dist", "dist/*", "build", "build/*", "*.egg-info", "*.egg-info/*",
19
19
  ".codexfer_pack.zip", "*.cxf",
20
+ "target", "target/*", ".gradle", ".gradle/*", "out", "out/*",
21
+ ".idea", ".idea/*", ".vscode", ".vscode/*",
20
22
  ]
21
23
 
22
24
 
@@ -41,7 +43,9 @@ def compress_project(
41
43
  patterns = DEFAULT_EXCLUDES + (excludes or [])
42
44
 
43
45
  file_count = 0
44
- with zipfile.ZipFile(output_path, mode="w", compression=zipfile.ZIP_DEFLATED) as zf:
46
+ with zipfile.ZipFile(
47
+ output_path, mode="w", compression=zipfile.ZIP_DEFLATED, compresslevel=9
48
+ ) as zf:
45
49
  for root, dirnames, filenames in os.walk(project_dir):
46
50
  rel_root = os.path.relpath(root, project_dir)
47
51
  dirnames[:] = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codexfer
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: End-to-end encrypted code sharing for developers.
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: typer>=0.12
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "codexfer"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "End-to-end encrypted code sharing for developers."
9
9
  requires-python = ">=3.10"
10
10
  dependencies = [
@@ -1,2 +0,0 @@
1
- """CodeXfer: end-to-end encrypted code sharing."""
2
- __version__ = "0.2.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes