pyproject.toml•1.37 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cbci-mcp"
version = "1.0.0"
description = "CBCI MCP (Model Context Protocol) - ChatBot CI with Dynamic Database Querying"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "CBCI MCP Team", email = "rosci671233@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Chat",
"Topic :: Database",
]
requires-python = ">=3.9"
dependencies = [
"openai>=1.0.0",
"pandas>=1.5.0",
"pyyaml>=6.0",
"ibm-db>=3.1.0",
]
[project.urls]
Homepage = "https://github.com/your-username/cbci-mcp"
Repository = "https://github.com/your-username/cbci-mcp"
Issues = "https://github.com/your-username/cbci-mcp/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["cbci_mcp*"]
[tool.setuptools.package-data]
cbci_mcp = ["*.py", "*.yaml"]