[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jira-mcp"
version = "0.1.0"
description = "Jira MCP for controlling Jira through Jira Command Line."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.25.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.ruff]
line-length = 80
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[project.scripts]
jira-mcp = "src.main:main"