pysentry-rs 0.3.0__cp311-cp311-macosx_11_0_arm64.whl → 0.3.2__cp311-cp311-macosx_11_0_arm64.whl

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.

Potentially problematic release.


This version of pysentry-rs might be problematic. Click here for more details.

Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pysentry-rs
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -289,6 +289,52 @@ pysentry --no-resolution-cache --format json --output security-report.json
289
289
 
290
290
  ## Configuration
291
291
 
292
+ PySentry supports TOML-based configuration files for persistent settings management. Configuration files follow a hierarchical discovery pattern:
293
+
294
+ 1. **Project-level**: `.pysentry.toml` in current or parent directories
295
+ 2. **User-level**: `~/.config/pysentry/config.toml` (Linux/macOS)
296
+ 3. **System-level**: `/etc/pysentry/config.toml` (Unix systems)
297
+
298
+ ### Configuration File Example
299
+
300
+ ```toml
301
+ version = 1
302
+
303
+ [defaults]
304
+ format = "json"
305
+ severity = "medium"
306
+ fail_on = "high"
307
+ scope = "all"
308
+ direct_only = false
309
+
310
+ [sources]
311
+ enabled = ["pypa", "osv"]
312
+
313
+ [resolver]
314
+ type = "uv"
315
+ fallback = "pip-tools"
316
+
317
+ [cache]
318
+ enabled = true
319
+ resolution_ttl = 48
320
+ vulnerability_ttl = 72
321
+
322
+ [output]
323
+ quiet = false
324
+ verbose = false
325
+ color = "auto"
326
+
327
+ [ignore]
328
+ ids = ["CVE-2023-12345", "GHSA-xxxx-yyyy-zzzz"]
329
+ ```
330
+
331
+ ### Environment Variables
332
+
333
+ | Variable | Description | Example |
334
+ |----------|-------------|---------|
335
+ | `PYSENTRY_CONFIG` | Override config file path | `PYSENTRY_CONFIG=/path/to/config.toml` |
336
+ | `PYSENTRY_NO_CONFIG` | Disable all config file loading | `PYSENTRY_NO_CONFIG=1` |
337
+
292
338
  ### Command Line Options
293
339
 
294
340
  | Option | Description | Default |
@@ -299,6 +345,7 @@ pysentry --no-resolution-cache --format json --output security-report.json
299
345
  | `--sources` | Vulnerability sources: `pypa`, `pypi`, `osv` (multiple) | `pypa` |
300
346
  | `--all-extras` | Include all dependencies (main + dev + optional) | `false` |
301
347
  | `--direct-only` | Check only direct dependencies | `false` |
348
+ | `--detailed` | Show full vulnerability descriptions instead of truncated| `false` |
302
349
  | `--ignore` | Vulnerability IDs to ignore (repeatable) | `[]` |
303
350
  | `--output` | Output file path | `stdout` |
304
351
  | `--no-cache` | Disable all caching | `false` |
@@ -0,0 +1,7 @@
1
+ pysentry/__init__.py,sha256=uSo2bKZNbcRd1bEXOzF3MuxrEapECowrIHG0t_DERa8,611
2
+ pysentry/_internal.cpython-311-darwin.so,sha256=pc00JABFO1WK1gHA-40BPGH7zomOCydYPJU47CBDuQc,10258768
3
+ pysentry_rs-0.3.2.dist-info/METADATA,sha256=8KuX3scvFnvwny4VKPh5-WlMG9lWaoQtrvhApQKw1C4,24560
4
+ pysentry_rs-0.3.2.dist-info/WHEEL,sha256=FQD2wNSk7QdKfwuvlrA52DGgdDYb2Xq1PtLwlu6bv-w,104
5
+ pysentry_rs-0.3.2.dist-info/entry_points.txt,sha256=3bJguekVEbXTn-ceDCWJaSIZScquPPP1Ux9TPVHHanE,44
6
+ pysentry_rs-0.3.2.dist-info/licenses/LICENSE,sha256=TAMtDCoJuavXz7pCEklrzjH55sdvsy5gKsXY9NsImwY,34878
7
+ pysentry_rs-0.3.2.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- pysentry/__init__.py,sha256=uSo2bKZNbcRd1bEXOzF3MuxrEapECowrIHG0t_DERa8,611
2
- pysentry/_internal.cpython-311-darwin.so,sha256=U77qLYKTZW3BFgpa7XRcJcA2gWf4cEP6P-tmqpv2zOc,9936624
3
- pysentry_rs-0.3.0.dist-info/METADATA,sha256=GQFBkLLhxJTPPvuOELGarntbqO3vTGJTh0gwpc8GZ4o,23403
4
- pysentry_rs-0.3.0.dist-info/WHEEL,sha256=FQD2wNSk7QdKfwuvlrA52DGgdDYb2Xq1PtLwlu6bv-w,104
5
- pysentry_rs-0.3.0.dist-info/entry_points.txt,sha256=3bJguekVEbXTn-ceDCWJaSIZScquPPP1Ux9TPVHHanE,44
6
- pysentry_rs-0.3.0.dist-info/licenses/LICENSE,sha256=TAMtDCoJuavXz7pCEklrzjH55sdvsy5gKsXY9NsImwY,34878
7
- pysentry_rs-0.3.0.dist-info/RECORD,,