pyproject.toml•798 B
[project]
name = "mcp-server-netsuite"
version = "0.1.0"
description = "MCP server for Oracle NetSuite (SuiteQL, records)"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
dependencies = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.23.0",
"requests>=2.31.0",
"requests-oauthlib>=1.3.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ipdb>=0.13.13",
"isort>=6.0.1",
"mypy>=1.9.0",
"pre-commit>=4.1.0",
"pyright>=1.1.389",
"pytest>=8.3.3",
"pytest-asyncio>=0.23.0",
"ruff>=0.8.0",
]
[project.scripts]
mcp-server-netsuite = "src.server:app"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
asyncio_mode = "auto"