pyproject.toml•832 B
[project]
name = "pterasim-mcp"
version = "0.1.0"
description = "Pterasim MCP helper with analytic fallback"
authors = [{ name = "Pterasim MCP Maintainers" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.119,<1.0",
"pydantic>=2.11",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"ruff>=0.6.7",
"httpx>=0.28",
]
[project.urls]
Homepage = "https://github.com/yevheniikravchuk/pterasim-mcp"
Repository = "https://github.com/yevheniikravchuk/pterasim-mcp"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = "-q"