Area51base/cc-chatbot
0
1[build-system]2requires = ["setuptools>=45", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "cc-chatbot"7version = "1.0.0"8description = "Credit Card AI Chatbot — recommendation, rewards & redemption"9requires-python = ">=3.9"10dependencies = []11 12[tool.setuptools.packages.find]13where = ["src"]14 15[tool.pytest.ini_options]16asyncio_mode = "auto"17testpaths = ["tests"]18 