[project]
name = "bach-idealista7"
version = "2.0.3"
description = "MCP server for accessing Idealista7 API - Search real estate in Spain, Portugal and Italy"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "bachstudio"}
]
keywords = ["mcp", "idealista", "real-estate", "spain", "portugal", "italy", "api"]
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",
]
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.25.0",
]
[project.scripts]
bach_idealista7 = "server:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
]
[project.urls]
Homepage = "https://github.com/BACH-AI-Tools/idealista7"
Repository = "https://github.com/BACH-AI-Tools/idealista7"
Documentation = "https://github.com/BACH-AI-Tools/idealista7#readme"
"Bug Tracker" = "https://github.com/BACH-AI-Tools/idealista7/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"server.py",
"openapi.json",
"__init__.py",
]
[tool.hatch.build.targets.wheel]
packages = ["."]
only-include = ["server.py", "openapi.json", "__init__.py"]
[tool.hatch.build.targets.sdist]
include = [
"server.py",
"openapi.json",
"README.md",
"LICENSE",
"__init__.py",
]
[tool.hatch.version]
path = "server.py"
pattern = '__version__ = "(?P<version>[^"]+)"'