diffx-python 0.3.2__tar.gz → 0.4.2__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.
@@ -48,3 +48,31 @@ htmlcov/
48
48
  # Binary downloads
49
49
  **/packages/*/bin/
50
50
  **/packages/*/temp/
51
+
52
+ # Configuration files with sensitive data
53
+ .config/
54
+ **/claude_desktop_config.json
55
+ **/.config/claude-desktop/
56
+
57
+ # Claude CLI cache and logs
58
+ ~/.cache/claude-cli-nodejs/
59
+ **/.cache/claude-cli-nodejs/
60
+ **/mcp-logs-ide/
61
+ **/*mcp-logs-ide*
62
+
63
+ # Temporary files
64
+ *.tmp
65
+ *.temp
66
+ *.swp
67
+ *.swo
68
+ *~
69
+
70
+ # Local development files
71
+ .env.local
72
+ .env.development.local
73
+ .env.test.local
74
+ .env.production.local
75
+
76
+ # Documentation consistency check outputs
77
+ docs-consistency-*.log
78
+ docs-consistency-*.json
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: diffx-python
3
- Version: 0.3.2
3
+ Version: 0.4.2
4
4
  Summary: Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting.
5
5
  Project-URL: Homepage, https://github.com/kako-jun/diffx
6
6
  Project-URL: Repository, https://github.com/kako-jun/diffx
7
7
  Project-URL: Issues, https://github.com/kako-jun/diffx/issues
8
8
  Project-URL: Documentation, https://github.com/kako-jun/diffx/tree/main/docs
9
- Author-email: kako-jun <kako.jun.42@gmail.com>
9
+ Author: kako-jun
10
10
  License-Expression: MIT
11
11
  Keywords: automation,ci-cd,comparison,configuration,csv,data-analysis,devops,diff,ini,json,semantic,structured-data,toml,xml,yaml
12
12
  Classifier: Development Status :: 4 - Beta
@@ -4,12 +4,12 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "diffx-python"
7
- version = "0.3.2"
7
+ version = "0.4.2"
8
8
  description = "Python wrapper for diffx - semantic diffing of JSON, YAML, TOML, XML, INI, and CSV files. Focuses on structural meaning rather than formatting."
9
9
  readme = "README.md"
10
10
  license = "MIT"
11
11
  authors = [
12
- { name = "kako-jun", email = "kako.jun.42@gmail.com" }
12
+ { name = "kako-jun" }
13
13
  ]
14
14
  classifiers = [
15
15
  "Development Status :: 4 - Beta",
@@ -27,8 +27,12 @@ class DiffOptions:
27
27
  ignore_keys_regex: Optional[str] = None
28
28
  epsilon: Optional[float] = None
29
29
  array_id_key: Optional[str] = None
30
- optimize: bool = False
31
- batch_size: Optional[int] = None
30
+ context: Optional[int] = None
31
+ ignore_whitespace: bool = False
32
+ ignore_case: bool = False
33
+ quiet: bool = False
34
+ brief: bool = False
35
+ debug: bool = False
32
36
 
33
37
 
34
38
  class DiffResult:
@@ -169,13 +173,29 @@ def diff(
169
173
  if options.array_id_key:
170
174
  args.extend(["--array-id-key", options.array_id_key])
171
175
 
172
- # Add optimize option
173
- if options.optimize:
174
- args.append("--optimize")
176
+ # Add context option
177
+ if options.context is not None:
178
+ args.extend(["--context", str(options.context)])
175
179
 
176
- # Add batch size option
177
- if options.batch_size is not None:
178
- args.extend(["--batch-size", str(options.batch_size)])
180
+ # Add ignore whitespace option
181
+ if options.ignore_whitespace:
182
+ args.append("--ignore-whitespace")
183
+
184
+ # Add ignore case option
185
+ if options.ignore_case:
186
+ args.append("--ignore-case")
187
+
188
+ # Add quiet option
189
+ if options.quiet:
190
+ args.append("--quiet")
191
+
192
+ # Add brief option
193
+ if options.brief:
194
+ args.append("--brief")
195
+
196
+ # Add debug option
197
+ if options.debug:
198
+ args.append("--debug")
179
199
 
180
200
  stdout, stderr = _execute_diffx(args)
181
201
 
@@ -12,7 +12,13 @@ import urllib.request
12
12
  import zipfile
13
13
  from pathlib import Path
14
14
 
15
- DIFFX_VERSION = "0.3.0"
15
+ import importlib.metadata
16
+
17
+ try:
18
+ DIFFX_VERSION = importlib.metadata.version("diffx-python")
19
+ except importlib.metadata.PackageNotFoundError:
20
+ # Fallback for development
21
+ DIFFX_VERSION = "0.4.2"
16
22
 
17
23
 
18
24
  def get_platform_info():
File without changes