pyneat-cli 3.0.2__tar.gz → 3.0.4__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.
- {pyneat_cli-3.0.2/pyneat_cli.egg-info → pyneat_cli-3.0.4}/PKG-INFO +42 -40
- pyneat_cli-3.0.4/pyneat-rs/Cargo.lock +4123 -0
- pyneat_cli-3.0.4/pyneat-rs/Cargo.toml +74 -0
- pyneat_cli-3.0.4/pyneat-rs/IMPROVEMENTS.md +207 -0
- pyneat_cli-3.0.4/pyneat-rs/README.md +383 -0
- pyneat_cli-3.0.4/pyneat-rs/benches/rule_benchmark.rs +121 -0
- pyneat_cli-3.0.4/pyneat-rs/benches/scanner_benchmark.rs +201 -0
- pyneat_cli-3.0.4/pyneat-rs/benches/test_utils.rs +28 -0
- pyneat_cli-3.0.4/pyneat-rs/benchmark_results.json +26 -0
- pyneat_cli-3.0.4/pyneat-rs/build.rs +27 -0
- pyneat_cli-3.0.4/pyneat-rs/src/ai_security/mod.rs +137 -0
- pyneat_cli-3.0.4/pyneat-rs/src/ai_security/rules.rs +951 -0
- pyneat_cli-3.0.4/pyneat-rs/src/fixer/apply_fix.rs +341 -0
- pyneat_cli-3.0.4/pyneat-rs/src/fixer/diff.rs +162 -0
- pyneat_cli-3.0.4/pyneat-rs/src/fixer/mod.rs +22 -0
- pyneat_cli-3.0.4/pyneat-rs/src/integrations/github.rs +370 -0
- pyneat_cli-3.0.4/pyneat-rs/src/integrations/gitlab.rs +398 -0
- pyneat_cli-3.0.4/pyneat-rs/src/integrations/mod.rs +22 -0
- pyneat_cli-3.0.4/pyneat-rs/src/integrations/sonarqube.rs +343 -0
- pyneat_cli-3.0.4/pyneat-rs/src/lib.rs +176 -0
- pyneat_cli-3.0.4/pyneat-rs/src/lib_tests.rs +107 -0
- pyneat_cli-3.0.4/pyneat-rs/src/lsp/mod.rs +448 -0
- pyneat_cli-3.0.4/pyneat-rs/src/main.rs +1071 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/ast_rules.rs +544 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/base.rs +152 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/extended_security.rs +1589 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/mod.rs +58 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/php_rules/mod.rs +19 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/php_rules/php.rs +669 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/quality.rs +482 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec024.rs +59 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec025.rs +59 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec026.rs +60 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec042.rs +60 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec043.rs +58 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec044.rs +59 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec060.rs +63 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec061.rs +66 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec062.rs +63 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec063.rs +79 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec064.rs +64 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec065.rs +63 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec066.rs +68 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec067.rs +76 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec068.rs +65 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec069.rs +73 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec070.rs +76 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec071.rs +64 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/sec072.rs +67 -0
- pyneat_cli-3.0.4/pyneat-rs/src/rules/security.rs +2477 -0
- pyneat_cli-3.0.4/pyneat-rs/src/sarif/mod.rs +607 -0
- pyneat_cli-3.0.4/pyneat-rs/src/sarif/writer.rs +231 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/base.rs +219 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/mod.rs +52 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/parser.rs +217 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/quality_rules.rs +472 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/csharp/rules.rs +1372 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/mod.rs +66 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/parser.rs +240 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/rules/mod.rs +20 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/go/rules/rules.rs +708 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/mod.rs +54 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/parser.rs +323 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/quality_rules.rs +493 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/rules.rs +165 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/java/security_rules.rs +2041 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/mod.rs +115 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/parser.rs +336 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/quality_rules.rs +565 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/rules.rs +2401 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/javascript/security_rules.rs +1691 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ln_ast.rs +228 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ln_ast_converter.rs +641 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/mod.rs +41 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/multilang.rs +775 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/mod.rs +54 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/parser.rs +178 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/quality_rules.rs +471 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/rules.rs +130 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/php/security_rules.rs +1246 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/mod.rs +54 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/parser.rs +189 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/quality_rules.rs +420 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/rules.rs +358 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/security_rules/mod.rs +20 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/ruby/security_rules/security_rules.rs +765 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/mod.rs +71 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/parser.rs +276 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/quality_rules.rs +702 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/rules.rs +290 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/rust/security_rules.rs +917 -0
- pyneat_cli-3.0.4/pyneat-rs/src/scanner/tree_sitter.rs +154 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.clean.js +22 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.cs +49 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.go +25 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.java +47 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.js +22 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.php +24 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.rb +47 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/sample.rs +28 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/simple.go +11 -0
- pyneat_cli-3.0.4/pyneat-rs/test-samples/vuln.go +37 -0
- pyneat_cli-3.0.4/pyneat-rs/tests/test_multilang.rs +190 -0
- pyneat_cli-3.0.4/pyneat-rs/tests/test_rules.rs +115 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyproject.toml +7 -14
- pyneat_cli-3.0.2/MANIFEST.in +0 -6
- pyneat_cli-3.0.2/PKG-INFO +0 -605
- pyneat_cli-3.0.2/pyneat/__init__.py +0 -371
- pyneat_cli-3.0.2/pyneat/__main__.py +0 -24
- pyneat_cli-3.0.2/pyneat/benchmark.py +0 -542
- pyneat_cli-3.0.2/pyneat/cli.py +0 -1800
- pyneat_cli-3.0.2/pyneat/config.py +0 -453
- pyneat_cli-3.0.2/pyneat/config_loader.py +0 -294
- pyneat_cli-3.0.2/pyneat/core/__init__.py +0 -81
- pyneat_cli-3.0.2/pyneat/core/atomic.py +0 -215
- pyneat_cli-3.0.2/pyneat/core/engine.py +0 -652
- pyneat_cli-3.0.2/pyneat/core/manifest.py +0 -1205
- pyneat_cli-3.0.2/pyneat/core/marker_cleanup.py +0 -152
- pyneat_cli-3.0.2/pyneat/core/scope_guard.py +0 -152
- pyneat_cli-3.0.2/pyneat/core/semantic_guard.py +0 -248
- pyneat_cli-3.0.2/pyneat/core/type_shield.py +0 -226
- pyneat_cli-3.0.2/pyneat/core/types.py +0 -759
- pyneat_cli-3.0.2/pyneat/plugins/__init__.py +0 -55
- pyneat_cli-3.0.2/pyneat/plugins/base.py +0 -313
- pyneat_cli-3.0.2/pyneat/plugins/builtin/__init__.py +0 -109
- pyneat_cli-3.0.2/pyneat/pre_commit.py +0 -120
- pyneat_cli-3.0.2/pyneat/rules/__init__.py +0 -76
- pyneat_cli-3.0.2/pyneat/rules/ai_bugs.py +0 -715
- pyneat_cli-3.0.2/pyneat/rules/base.py +0 -92
- pyneat_cli-3.0.2/pyneat/rules/comments.py +0 -179
- pyneat_cli-3.0.2/pyneat/rules/conservative.py +0 -36
- pyneat_cli-3.0.2/pyneat/rules/csharp/__init__.py +0 -28
- pyneat_cli-3.0.2/pyneat/rules/csharp/security.py +0 -426
- pyneat_cli-3.0.2/pyneat/rules/dataclass.py +0 -313
- pyneat_cli-3.0.2/pyneat/rules/deadcode.py +0 -517
- pyneat_cli-3.0.2/pyneat/rules/debug.py +0 -392
- pyneat_cli-3.0.2/pyneat/rules/destructive.py +0 -43
- pyneat_cli-3.0.2/pyneat/rules/duplication.py +0 -131
- pyneat_cli-3.0.2/pyneat/rules/fstring.py +0 -261
- pyneat_cli-3.0.2/pyneat/rules/go/__init__.py +0 -32
- pyneat_cli-3.0.2/pyneat/rules/go/security.py +0 -483
- pyneat_cli-3.0.2/pyneat/rules/go/unchecked_error.py +0 -81
- pyneat_cli-3.0.2/pyneat/rules/imports.py +0 -184
- pyneat_cli-3.0.2/pyneat/rules/init_protection.py +0 -218
- pyneat_cli-3.0.2/pyneat/rules/is_not_none.py +0 -129
- pyneat_cli-3.0.2/pyneat/rules/isolated.py +0 -164
- pyneat_cli-3.0.2/pyneat/rules/java/__init__.py +0 -28
- pyneat_cli-3.0.2/pyneat/rules/java/security.py +0 -482
- pyneat_cli-3.0.2/pyneat/rules/javascript/__init__.py +0 -34
- pyneat_cli-3.0.2/pyneat/rules/javascript/security.py +0 -669
- pyneat_cli-3.0.2/pyneat/rules/javascript/strict_equality.py +0 -71
- pyneat_cli-3.0.2/pyneat/rules/javascript/var_to_const.py +0 -66
- pyneat_cli-3.0.2/pyneat/rules/magic_numbers.py +0 -149
- pyneat_cli-3.0.2/pyneat/rules/match_case.py +0 -376
- pyneat_cli-3.0.2/pyneat/rules/multilang/__init__.py +0 -58
- pyneat_cli-3.0.2/pyneat/rules/multilang/base.py +0 -253
- pyneat_cli-3.0.2/pyneat/rules/multilang/debug_statements.py +0 -194
- pyneat_cli-3.0.2/pyneat/rules/multilang/deep_nesting.py +0 -80
- pyneat_cli-3.0.2/pyneat/rules/multilang/empty_catch.py +0 -90
- pyneat_cli-3.0.2/pyneat/rules/multilang/redundant_comments.py +0 -158
- pyneat_cli-3.0.2/pyneat/rules/multilang/remove_todos.py +0 -73
- pyneat_cli-3.0.2/pyneat/rules/multilang/unused_function.py +0 -151
- pyneat_cli-3.0.2/pyneat/rules/multilang/unused_import.py +0 -253
- pyneat_cli-3.0.2/pyneat/rules/naming.py +0 -332
- pyneat_cli-3.0.2/pyneat/rules/performance.py +0 -354
- pyneat_cli-3.0.2/pyneat/rules/php/__init__.py +0 -28
- pyneat_cli-3.0.2/pyneat/rules/php/security.py +0 -437
- pyneat_cli-3.0.2/pyneat/rules/quality.py +0 -124
- pyneat_cli-3.0.2/pyneat/rules/range_len_pattern.py +0 -215
- pyneat_cli-3.0.2/pyneat/rules/redundant.py +0 -190
- pyneat_cli-3.0.2/pyneat/rules/refactoring.py +0 -258
- pyneat_cli-3.0.2/pyneat/rules/registry.py +0 -250
- pyneat_cli-3.0.2/pyneat/rules/ruby/__init__.py +0 -28
- pyneat_cli-3.0.2/pyneat/rules/ruby/security.py +0 -401
- pyneat_cli-3.0.2/pyneat/rules/rust/__init__.py +0 -28
- pyneat_cli-3.0.2/pyneat/rules/rust/security.py +0 -410
- pyneat_cli-3.0.2/pyneat/rules/safe.py +0 -37
- pyneat_cli-3.0.2/pyneat/rules/secret_classifier.py +0 -252
- pyneat_cli-3.0.2/pyneat/rules/security.py +0 -1212
- pyneat_cli-3.0.2/pyneat/rules/security_pack/__init__.py +0 -77
- pyneat_cli-3.0.2/pyneat/rules/security_pack/critical.py +0 -59
- pyneat_cli-3.0.2/pyneat/rules/security_pack/high.py +0 -39
- pyneat_cli-3.0.2/pyneat/rules/security_pack/info.py +0 -39
- pyneat_cli-3.0.2/pyneat/rules/security_pack/low.py +0 -39
- pyneat_cli-3.0.2/pyneat/rules/security_pack/medium.py +0 -44
- pyneat_cli-3.0.2/pyneat/rules/security_registry.py +0 -1991
- pyneat_cli-3.0.2/pyneat/rules/taint_analysis.py +0 -306
- pyneat_cli-3.0.2/pyneat/rules/typing.py +0 -287
- pyneat_cli-3.0.2/pyneat/rules/universal/__init__.py +0 -69
- pyneat_cli-3.0.2/pyneat/rules/universal/arrow_antipattern.py +0 -62
- pyneat_cli-3.0.2/pyneat/rules/universal/base.py +0 -123
- pyneat_cli-3.0.2/pyneat/rules/universal/debug_artifacts.py +0 -136
- pyneat_cli-3.0.2/pyneat/rules/universal/empty_catch.py +0 -59
- pyneat_cli-3.0.2/pyneat/rules/universal/hardcoded_secrets.py +0 -81
- pyneat_cli-3.0.2/pyneat/rules/universal/todos.py +0 -52
- pyneat_cli-3.0.2/pyneat/rules/unused.py +0 -332
- pyneat_cli-3.0.2/pyneat/scanner/rust_scanner.py +0 -329
- pyneat_cli-3.0.2/pyneat/tools/__init__.py +0 -20
- pyneat_cli-3.0.2/pyneat/tools/github_fuzz/__init__.py +0 -322
- pyneat_cli-3.0.2/pyneat/tools/github_fuzz/__main__.py +0 -720
- pyneat_cli-3.0.2/pyneat/tools/github_fuzz/debug_logger.py +0 -471
- pyneat_cli-3.0.2/pyneat/tools/github_fuzz/fuzz_runner.py +0 -628
- pyneat_cli-3.0.2/pyneat/tools/github_fuzz/github_client.py +0 -413
- pyneat_cli-3.0.2/pyneat/tools/osv_client.py +0 -269
- pyneat_cli-3.0.2/pyneat/tools/sbom_generator.py +0 -291
- pyneat_cli-3.0.2/pyneat/tools/security/advisory_db.py +0 -741
- pyneat_cli-3.0.2/pyneat/tools/security/dependency_scanner.py +0 -393
- pyneat_cli-3.0.2/pyneat/tools/vulnerability_scanner.py +0 -422
- pyneat_cli-3.0.2/pyneat/utils/naming.py +0 -68
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/hardcoded_secrets.py +0 -96
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/performance.py +0 -354
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/redundant_comments.py +0 -158
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/__init__.py +0 -77
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/critical.py +0 -59
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/high.py +0 -39
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/info.py +0 -39
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/low.py +0 -39
- pyneat_cli-3.0.2/pyneat-pro-engine/src/rules/security_pack/medium.py +0 -44
- pyneat_cli-3.0.2/pyneat_cli.egg-info/SOURCES.txt +0 -162
- pyneat_cli-3.0.2/pyneat_cli.egg-info/dependency_links.txt +0 -1
- pyneat_cli-3.0.2/pyneat_cli.egg-info/entry_points.txt +0 -2
- pyneat_cli-3.0.2/pyneat_cli.egg-info/requires.txt +0 -12
- pyneat_cli-3.0.2/pyneat_cli.egg-info/top_level.txt +0 -5
- pyneat_cli-3.0.2/setup.cfg +0 -4
- pyneat_cli-3.0.2/setup.py +0 -3
- pyneat_cli-3.0.2/tests/test_agent_marker/test_marker_data.py +0 -653
- pyneat_cli-3.0.2/tests/test_engine.py +0 -393
- pyneat_cli-3.0.2/tests/test_fuzz.py +0 -181
- pyneat_cli-3.0.2/tests/test_fuzz_github.py +0 -309
- pyneat_cli-3.0.2/tests/test_integration.py +0 -259
- pyneat_cli-3.0.2/tests/test_layers.py +0 -410
- pyneat_cli-3.0.2/tests/test_manifest_export/test_manifest_export.py +0 -589
- pyneat_cli-3.0.2/tests/test_marker_cleanup/test_marker_cleanup.py +0 -115
- pyneat_cli-3.0.2/tests/test_multilang/test_fixtures.py +0 -362
- pyneat_cli-3.0.2/tests/test_rules/test_ai_bugs_extended.py +0 -270
- pyneat_cli-3.0.2/tests/test_rules/test_dataclass_and_matchcase.py +0 -192
- pyneat_cli-3.0.2/tests/test_rules/test_deadcode.py +0 -85
- pyneat_cli-3.0.2/tests/test_rules/test_debug.py +0 -84
- pyneat_cli-3.0.2/tests/test_rules/test_fstring.py +0 -59
- pyneat_cli-3.0.2/tests/test_rules/test_is_not_none.py +0 -70
- pyneat_cli-3.0.2/tests/test_rules/test_naming.py +0 -93
- pyneat_cli-3.0.2/tests/test_rules/test_performance_and_quality.py +0 -357
- pyneat_cli-3.0.2/tests/test_rules/test_range_len.py +0 -61
- pyneat_cli-3.0.2/tests/test_rules/test_refactoring.py +0 -74
- pyneat_cli-3.0.2/tests/test_rust_scanner.py +0 -160
- pyneat_cli-3.0.2/tests/test_security/__init__.py +0 -1
- pyneat_cli-3.0.2/tests/test_security/test_command_injection.py +0 -166
- pyneat_cli-3.0.2/tests/test_security/test_hardcoded_secrets.py +0 -86
- pyneat_cli-3.0.2/tests/test_security/test_php_all.py +0 -269
- pyneat_cli-3.0.2/tests/test_security/test_php_eval.py +0 -70
- pyneat_cli-3.0.2/tests/test_security/test_php_sql_injection.py +0 -66
- pyneat_cli-3.0.2/tests/test_security/test_php_xss.py +0 -58
- pyneat_cli-3.0.2/tests/test_security/test_pickle_rce.py +0 -47
- pyneat_cli-3.0.2/tests/test_security/test_sql_injection.py +0 -174
- pyneat_cli-3.0.2/tests/test_security/test_weak_crypto.py +0 -91
- pyneat_cli-3.0.2/tests/test_security/test_yaml_unsafe.py +0 -61
- pyneat_cli-3.0.2/tests/test_semantic_integrity.py +0 -712
- pyneat_cli-3.0.2/tests/test_smoke.py +0 -45
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/LICENSE +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/README.md +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/bench_python.py +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/benchmark.py +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/compare_with_competitors.py +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/test_code.py +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/test_rust.py +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat-rs/test_scanner.py +0 -0
- {pyneat_cli-3.0.2 → pyneat_cli-3.0.4}/pyneat_rs/__init__.pyi +0 -0
|
@@ -1,43 +1,44 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: pyneat-cli
|
|
3
|
-
Version: 3.0.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Classifier:
|
|
14
|
-
Classifier:
|
|
15
|
-
Classifier:
|
|
16
|
-
Classifier:
|
|
17
|
-
Classifier:
|
|
18
|
-
Classifier:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
License-File: LICENSE
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
Requires-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyneat-cli
|
|
3
|
+
Version: 3.0.4
|
|
4
|
+
Classifier: Development Status :: 4 - Beta
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
7
|
+
Classifier: Natural Language :: Chinese (Simplified)
|
|
8
|
+
Classifier: Natural Language :: English
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Classifier: Programming Language :: Rust
|
|
17
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
18
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
19
|
+
Requires-Dist: click>=8.0.0
|
|
20
|
+
Requires-Dist: libcst>=0.4.0
|
|
21
|
+
Requires-Dist: requests>=2.31.0
|
|
22
|
+
Requires-Dist: pytest>=7.0.0 ; extra == 'dev'
|
|
23
|
+
Requires-Dist: pytest-asyncio>=0.21.0 ; extra == 'dev'
|
|
24
|
+
Requires-Dist: pre-commit>=3.0.0 ; extra == 'pre-commit'
|
|
25
|
+
Requires-Dist: maturin>=1.5,<2.0 ; extra == 'rust'
|
|
26
|
+
Provides-Extra: dev
|
|
27
|
+
Provides-Extra: pre-commit
|
|
28
|
+
Provides-Extra: rust
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Summary: AI-Generated Code Scanner — detects bugs, security vulnerabilities, and quality issues that AI coding assistants introduce
|
|
31
|
+
Keywords: ai,code-cleaner,python,linter,formatter,security,dead-code,refactoring,ast,auto-fix
|
|
32
|
+
Author-email: Khanh Nam <khanhnam.copywriting@gmail.com>
|
|
33
|
+
License: GNU AGPL-3.0-or-later
|
|
34
|
+
Requires-Python: >=3.10
|
|
35
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
36
|
+
Project-URL: Changelog, https://github.com/pyneat/pyneat/blob/main/CHANGELOG.md
|
|
37
|
+
Project-URL: Documentation, https://github.com/pyneat/pyneat#readme
|
|
38
|
+
Project-URL: Homepage, https://github.com/pyneat/pyneat
|
|
39
|
+
Project-URL: Issues, https://github.com/pyneat/pyneat/issues
|
|
40
|
+
Project-URL: Repository, https://github.com/pyneat/pyneat
|
|
41
|
+
|
|
41
42
|
# PyNeat: AI-Generated Code Cleaner
|
|
42
43
|
|
|
43
44
|
**PyNeat 3.0.0** is a code scanning and cleanup tool built specifically for AI-generated code. Unlike generic linters, PyNeat targets the patterns that AI coding assistants systematically produce — phantom packages, hallucinated parameters, resource leaks, OWASP vulnerabilities, AI-specific security risks — and cleans them up automatically. Supports 9 languages.
|
|
@@ -603,3 +604,4 @@ AGPLv3 with Commercial Exception: Commercial use of this software
|
|
|
603
604
|
(e.g., bundling in paid products, SaaS services) is permitted,
|
|
604
605
|
provided that you comply with the open source obligations under AGPLv3 §11.
|
|
605
606
|
Contact the author for alternative licensing arrangements.
|
|
607
|
+
|