| [project] | |
| name = "cx-ai-agent" | |
| version = "1.0.0" | |
| description = "Autonomous Multi-Agent Customer Experience Research & Outreach Platform" | |
| readme = "README.md" | |
| requires-python = ">=3.11" | |
| license = {text = "MIT"} | |
| keywords = ["mcp", "autonomous-agents", "gradio", "rag", "customer-experience"] | |
| [project.urls] | |
| Homepage = "https://github.com/yourusername/cx_ai_agent" | |
| Repository = "https://github.com/yourusername/cx_ai_agent" | |
| "Hugging Face" = "https://huggingface.co/spaces/YOUR_USERNAME/cx-ai-agent" | |
| [build-system] | |
| requires = ["setuptools>=61.0"] | |
| build-backend = "setuptools.build_meta" | |
| [tool.black] | |
| line-length = 100 | |
| target-version = ['py311'] | |
| [tool.ruff] | |
| line-length = 100 | |
| select = ["E", "F", "I"] | |
| ignore = ["E501"] | |
| [tool.isort] | |
| profile = "black" | |
| line_length = 100 | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |
| python_files = ["test_*.py"] | |
| asyncio_mode = "auto" |