pyproject.toml•2.77 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "weather-mcp"
version = "1.0.0"
description = "A Model Context Protocol implementation for weather data queries"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Weather MCP Team", email = "weather-mcp@example.com"}
]
keywords = ["mcp", "weather", "api", "langchain", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
dependencies = [
"mcp>=1.0.0",
"fastmcp>=0.3.0",
"langchain>=0.1.0",
"langchain-core>=0.1.0",
"langchain-google-genai>=1.0.0",
"langgraph>=0.0.40",
"pandas>=2.0.0",
"matplotlib>=3.7.0",
"requests>=2.31.0",
"geopy>=2.3.0",
"nest-asyncio>=1.5.0",
"pydantic>=2.0.0",
"typing-extensions>=4.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.21.0",
]
[project.urls]
Homepage = "https://github.com/weather-mcp/weather-mcp"
Repository = "https://github.com/weather-mcp/weather-mcp.git"
Issues = "https://github.com/weather-mcp/weather-mcp/issues"
[project.scripts]
weather-mcp = "weather_mcp.cli:main"
weather-mcp-server = "weather_mcp.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short --strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
]