[project] name = "webber" version = "0.2.3" description = "Mrs. Webber - Multi-Agent AI Development System" authors = [ {name = "jpmschweitzer"} ] readme = "README.md" requires-python = ">=3.12" license = {text = "MIT"} classifiers = [ "Development Status :: 3 - Alpha", "Framework :: FastAPI", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Code Generators", ] [build-system] requires = ["setuptools>=75.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] where = ["."] include = ["src*"] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] python_functions = ["test_*"] addopts = "-v" [tool.mypy] python_version = "3.12" warn_return_any = true warn_unused_ignores = true strict = false ignore_missing_imports = true