IdeaLens_AI_Agents_App / pyproject.toml
NitishBorthakur's picture
Upload 10 files
4705b54 verified
raw
history blame contribute delete
686 Bytes
[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 = "[email protected]"}
]
[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"