[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "stackhawk-mcp" version = "1.2.5" description = "StackHawk MCP Server for Security Analytics and Developer Integration" authors = [{name = "StackHawk, Inc.", email = "support@stackhawk.com"}] license = "Apache-2.0" readme = "README.md" requires-python = ">=3.10" dependencies = [ "mcp>=1.0.0", "httpx>=0.27.0", "python-dotenv>=1.0.0", "PyYAML>=6.0", "jsonschema>=4.0.0" ] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "black>=23.0.0", "mypy>=1.0.0", "types-PyYAML>=6.0", "types-jsonschema>=4.0.0" ] [project.scripts] stackhawk-mcp = "stackhawk_mcp.__main__:cli" [project.urls] Homepage = "https://github.com/stackhawk/stackhawk-mcp" Repository = "https://github.com/stackhawk/stackhawk-mcp" [tool.black] line-length = 100 target-version = ['py310'] [tool.mypy] python_version = "3.10" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.setuptools.packages.find] include = ["stackhawk_mcp*"]