This commit is contained in:
Ole
2026-05-16 06:54:17 +00:00
commit 1399f61c1a
44 changed files with 6746 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
[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",
]
[project.scripts]
finn-eiendom-mcp = "finn_eiendom.mcp_server:main"
[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 = []