-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
40 lines (36 loc) · 947 Bytes
/
pyproject.toml
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
[project]
name = "mcp_tavily"
version = "0.1.5"
description = "A Model Context Protocol server that provides AI-powered web search capabilities using Tavily's search API"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.10.2",
"python-dotenv>=1.0.1",
"tavily-python>=0.5.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.10.0",
"pytest-cov>=4.1.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
pythonpath = ["src"]
addopts = ["--asyncio-mode=strict", "-W", "ignore::RuntimeWarning"]
asyncio_default_fixture_loop_scope = "function"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
]
[build-system]
requires = ["setuptools==67.8.0"]
build-backend = "setuptools.build_meta"