-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.56 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
[tool.poetry]
name = "ai-api-lint"
version = "0.1.0"
description = "AI-friendly API linter for OpenAPI specifications"
authors = ["SonAIengine <sonsj97@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "ai_api_lint"}]
keywords = ["openapi", "linter", "ai", "llm", "api", "tool-use", "mcp"]
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",
]
[tool.poetry.urls]
Homepage = "https://github.com/SonAIengine/ai-api-lint"
Repository = "https://github.com/SonAIengine/ai-api-lint"
"Bug Tracker" = "https://github.com/SonAIengine/ai-api-lint/issues"
[tool.poetry.scripts]
ai-api-lint = "ai_api_lint.cli:main"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pyyaml = {version = ">=6.0", optional = true}
[tool.poetry.extras]
yaml = ["pyyaml"]
[tool.poetry.group.dev.dependencies]
ruff = ">=0.8"
pytest = ">=7.0"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.ruff.lint.per-file-ignores]
"ai_api_lint/rules/*.py" = ["N801"] # AI001_RuleName convention
"ai_api_lint/report.py" = ["E501"] # HTML template strings
"ai_api_lint/fixer/fixers.py" = ["N801"] # FixAI042 naming convention
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"