-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (93 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
104 lines (93 loc) · 2.42 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "autodocs-mcp"
version = "0.1.4"
description = "Generate MCP servers from ReadTheDocs documentation"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Yusuf Ziya Cıvan"}
]
keywords = ["mcp", "readthedocs", "documentation", "ai", "claude"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=8.1.0",
"httpx>=0.25.0",
"beautifulsoup4>=4.12.0",
"lxml>=4.9.0",
"sphobjinv>=2.3.0",
"sentence-transformers>=2.2.0",
"chromadb>=0.4.0",
"mcp>=0.9.0",
"jinja2>=3.1.0",
"tqdm>=4.66.0",
"curl-cffi>=0.13.0",
]
[project.urls]
Homepage = "https://github.com/ziyacivan/autodocs-mcp"
Repository = "https://github.com/ziyacivan/autodocs-mcp"
Documentation = "https://github.com/ziyacivan/autodocs-mcp#readme"
Issues = "https://github.com/ziyacivan/autodocs-mcp/issues"
Changelog = "https://github.com/ziyacivan/autodocs-mcp/blob/master/CHANGELOG.md"
"PyPI" = "https://pypi.org/project/autodocs-mcp/"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"ruff>=0.1.0",
"pre-commit>=3.5.0",
]
[project.scripts]
autodocs-mcp = "autodocs_mcp.cli:main"
[tool.setuptools]
packages = {find = {where = ["src"]}}
include-package-data = true
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
addopts = [
"--strict-markers",
"--strict-config",
"--cov=src/autodocs_mcp",
"--cov-report=term-missing",
"--cov-report=html",
"-v",
]
[tool.coverage.run]
source = ["src/autodocs_mcp"]
omit = [
"*/tests/*",
"*/test_*.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]