[build-system] requires = ["setuptools>=45", "wheel"] build-backend = "setuptools.build_meta" [project] name = "multi-source-research-assistant" version = "1.0.0" description = "A comprehensive research tool combining multiple data sources" readme = "README.md" requires-python = ">=3.10" license = {text = "MIT"} authors = [ {name = "Your Name", email = "your.email@example.com"} ] [tool.black] line-length = 88 target-version = ['py310'] include = '\.pyi?$' [tool.flake8] max-line-length = 88 extend-ignore = "E203" exclude = [ ".git", "__pycache__", "build", "dist" ] [tool.pytest] testpaths = "tests" python_files = "test_*.py" addopts = "-v -s --cov=agents"