pyproject.toml•2.35 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-gigapi"
version = "1.1.4"
description = "An MCP server for GigAPI Timeseries Lake"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "GigAPI MCP Team", email = "team@gigapi.com"},
]
keywords = ["mcp", "gigapi", "timeseries", "database"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"fastmcp>=2.0.0",
"mcp>=1.0.0",
"requests>=2.31.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
"black>=23.0.0",
"mypy>=1.0.0",
"fastmcp>=0.1.0",
]
[project.scripts]
mcp-gigapi = "mcp_gigapi.__main__:main"
[project.urls]
Homepage = "https://github.com/gigapi/mcp-gigapi"
Repository = "https://github.com/gigapi/mcp-gigapi"
Issues = "https://github.com/gigapi/mcp-gigapi/issues"
[tool.hatch.build.targets.wheel]
packages = ["mcp_gigapi"]
[tool.ruff]
target-version = "py38"
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.black]
target-version = ['py38']
line-length = 88
[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.mypy.overrides]]
module = [
"mcp.*",
]
ignore_missing_imports = true