c9383788de
Co-authored-by: Copilot <copilot@github.com>
54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[project]
|
|
name = "finn-eiendom-mcp"
|
|
version = "0.1.0"
|
|
description = "Private FINN and Eiendom.no real estate MCP scout"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"beautifulsoup4>=4.12.0",
|
|
"httpx>=0.27.0",
|
|
"lxml>=5.0.0",
|
|
"mcp[cli]>=1.0.0",
|
|
"msgpack>=1.0.0",
|
|
"pydantic>=2.8.0",
|
|
"pydantic-settings>=2.4.0",
|
|
"python-dotenv>=1.0.0",
|
|
"requests>=2.31.0",
|
|
"starlette>=0.36.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
finn-eiendom = "finn_eiendom.cli:app"
|
|
finn-eiendom-mcp = "finn_eiendom.mcp_server:main"
|
|
finn-eiendom-http = "finn_eiendom.http_server:run"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipython>=8.0.0",
|
|
"mypy>=1.10.0",
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"respx>=0.21.0",
|
|
"ruff>=0.6.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
ignore = []
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"tests/fixtures.py" = ["E501"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
strict = true
|
|
plugins = [] |