31 lines
723 B
TOML
31 lines
723 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "mt-odoo-mcp"
|
|
version = "1.0.0"
|
|
description = "Multi-tenant MCP server for Odoo — users self-register and manage their own Odoo instances via AI agents"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"pydantic>=2.7.0",
|
|
"pydantic-settings>=2.3.0",
|
|
"python-dotenv>=1.0.0",
|
|
"anyio>=4.4.0",
|
|
"fastapi>=0.111.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"bcrypt>=4.0.0",
|
|
"email-validator>=2.0.0",
|
|
"cryptography>=42.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mt-odoo-mcp = "mt_odoo_mcp.server:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mt_odoo_mcp"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|