[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"]