pyproject.toml•1.09 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-server-jira"
description = "MCP server for Jira API integration"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
version = "0.1.0"
dependencies = [
"jira>=3.5.0",
"mcp[cli]>=1.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.24.0",
]
[project.scripts]
mcp-server-jira = "mcp_server_jira.__main__:main"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"isort",
"mypy",
"uv",
]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest]
testpaths = ["tests"]
python_files = "test_*.py"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disallow_incomplete_defs = false
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=1.0.0",
]
# Remove uv-specific config