-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (68 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
74 lines (68 loc) · 1.51 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "schema-validation"
dynamic = ["version"]
description = "scripts for mcp server registry validation"
readme = "README.md"
requires-python = ">=3.11"
license = "BSD-3-Clause"
authors = []
urls.Documentation = "https://biocontext.ai"
urls.Issues = "https://biocontext.ai"
urls.Source = "https://biocontext.ai"
dependencies = [
"rich",
"PyYAML",
"jsonschema",
"json5",
"types-jsonschema>=4.24.0.20250528",
"types-pyyaml>=6.0.12.20250516",
"requests>=2.32.5",
"fastmcp>=2.12.4",
"pre-commit>=4.3.0",
"tiktoken>=0.12.0",
]
[project.scripts]
validate_mcp_server_schema = "schema_validation.validate_schema:main"
validate_mcp_json_schema = "schema_validation.validate_mcp_json_schema:main"
create_mcp_json = "schema_validation.create_mcp_json:main"
get_mcp_tools = "schema_validation.get_mcp_tools:main"
check_folder_names = "schema_validation.check_folder_names:main"
check_remote_urls = "schema_validation.check_remote_urls:main"
filter_remote_urls = "schema_validation.filter_remote_urls:main"
[tool.hatch.version]
source = "vcs"
fallback-version = "0.0"
[tool.hatch.envs.default]
python = "3.11"
[tool.ruff]
line-length = 120
lint.select = [
"A",
"ARG",
"B",
"C",
"DTZ",
"E",
"EM",
"F",
"FBT",
"I",
"ICN",
"ISC",
"N",
"PLC",
"PLE",
"PLR",
"PLW",
"RUF",
"S",
"T",
"TID",
"UP",
"W",
"YTT",
]
lint.ignore = []