pyproject.toml•2.73 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "oracle-mcp-server"
version = "1.0.0"
description = "Oracle Database MCP Server for GitHub Copilot Agent Mode"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"openai>=1.99.9",
"oracledb>=2.0.0",
"pydantic>=2.0.0",
]
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.5.0",
"flake8>=6.0.0",
"pre-commit>=3.0.0",
]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
]
docs = [
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
]
chat = [
"openai>=1.99.9",
"rich>=13.0.0",
"typer>=0.12.0",
"python-dotenv>=1.0.0",
]
[project.scripts]
oracle-mcp-server = "oracle_mcp_server.server:main"
mcp-chat = "mcp_chat.chat:app"
[project.urls]
Homepage = "https://github.com/smith-nathanh/oracle-mcp-server"
Repository = "https://github.com/smith-nathanh/oracle-mcp-server"
Issues = "https://github.com/smith-nathanh/oracle-mcp-server/issues"
Documentation = "https://github.com/smith-nathanh/oracle-mcp-server/wiki"
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.5.0",
"flake8>=6.0.0",
"pre-commit>=3.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/oracle_mcp_server", "mcp_chat"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/mcp_chat",
"/README.md",
"/LICENSE",
]
[tool.black]
line-length = 100
target-version = ['py39']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
[[tool.mypy.overrides]]
module = [
"oracledb.*",
]
ignore_missing_imports = true