[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-stargazing"
version = "0.1.7"
description = "An MCP server that provides real-time astronomical data, smart stargazing planning, and light pollution analysis for AI agents."
readme = "README.md"
requires-python = ">=3.13"
authors = [
{ name = "Henry Gong", email = "zhao.gong@outlook.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"fastmcp",
"astropy[all]",
"pytz",
"numpy",
"astroquery",
"rasterio",
"tzlocal",
"geopy",
"stargazing-place-finder>=0.3.1"
]
[project.scripts]
mcp-stargazing = "src.main:main"
[project.urls]
Homepage = "https://github.com/StarGazer1995/mcp-stargazing"
Issues = "https://github.com/StarGazer1995/mcp-stargazing/issues"
[tool.setuptools.packages.find]
include = ["src*"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]