forked from tw-haiven/haiven-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1010 Bytes
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "haiven-mcp-server"
version = "1.0.0"
description = "Model Context Protocol server for Haiven AI prompts API"
authors = ["Thoughtworks <haiven@thoughtworks.com>"]
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
mcp = "^1.0.0"
httpx = "^0.27.0"
pydantic = "^2.5.0"
loguru = "^0.7.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-asyncio = "^0.24.0"
pytest-mock = "^3.14.1"
pre-commit = "^4.2.0"
[tool.poetry.scripts]
haiven-mcp-server = "src.mcp_server:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length=140
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
explicit_package_bases = true
packages = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [
"tests",
]
python_files = [
"test_*.py",
"*_test.py",
]