File size: 743 Bytes
28c297e
 
 
 
 
 
 
a39c5b8
28c297e
18cfc40
28c297e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "fngradio-various-api-mcp"
version = "0.0.1"
description = "Various public APIs exposed as MCP via Gradio using fngradio"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
    "fngradio>=0.0.9",
    "gradio[mcp]>=5.42.0",
    "httpx>=0.28.1",
]

[dependency-groups]
dev = [
    "flake8>=7.3.0",
    "mypy>=1.17.1",
    "pylint>=3.3.8",
    "pytest>=8.4.1",
    "pytest-watcher>=0.4.3",
]

[tool.pylint.'MESSAGES CONTROL']
max-line-length = 100
disable = """
    missing-docstring,
    too-few-public-methods,
    duplicate-code
"""

[tool.pytest.ini_options]
filterwarnings = [
    "error"
]

[tool.pytest-watcher]
now = true
clear = false
delay = 0.2
runner = ".venv/bin/python"
runner_args = ["-m", "pytest"]