AST-aware, stdlib-only static checks: swallowed-exception-around-write (C1), undefined-name (C2), hardcoded-secret-literal (C3), fail-open-flag (C4), rotated-secret-captured-once (C5). Tests + CI + examples included. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
31 lines
1,012 B
TOML
31 lines
1,012 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "bugclass-detectors"
|
|
version = "0.1.0"
|
|
description = "AST-aware static checks for the silent-failure bug classes that AI-generated and fast-moving code keeps reintroducing."
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.8"
|
|
authors = [{ name = "Elite Agentic Solutions" }]
|
|
keywords = ["static-analysis", "lint", "ast", "ci", "code-quality", "ai-code", "bug-detection"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Software Development :: Quality Assurance",
|
|
]
|
|
dependencies = []
|
|
|
|
[project.urls]
|
|
Homepage = "https://eliteagenticsolutions.com"
|
|
Repository = "https://github.com/elite-agentic-solutions/bugclass-detectors"
|
|
|
|
[project.scripts]
|
|
bugclass-detectors = "bugclass_detectors.core:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["bugclass_detectors"]
|