-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.39 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "toolint"
version = "0.1.0"
description = "Structural linter for MCP-compatible, zero-dependency Python agent tool packages"
authors = ["PlateerLab"]
license = "MIT"
readme = "README.md"
packages = [{include = "toolint"}]
keywords = [
"linter", "mcp", "agent", "tool", "architecture",
"zero-dependency", "structural-lint", "python",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
[tool.poetry.urls]
Homepage = "https://github.com/PlateerLab/Toolint"
Repository = "https://github.com/PlateerLab/Toolint"
[tool.poetry.scripts]
toolint = "toolint.__main__:main"
[tool.poetry.dependencies]
python = "^3.10"
# Zero dependencies — stdlib only (ast, tomllib, pathlib, json)
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
ruff = ">=0.11"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]