-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 886 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "asp"
version = "0.1.0"
description = "Agentic Services Protocol (ASP) — schema definitions, generation pipeline, and documentation"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "ASP Authors" },
]
dependencies = [
"jsonschema>=4.20.0",
"pyyaml>=6.0",
"referencing>=0.31.0",
]
[project.optional-dependencies]
dev = [
"datamodel-code-generator>=0.25.0",
"ruff>=0.4.0",
"pre-commit>=3.7.0",
]
docs = [
"mkdocs-material>=9.5.0",
"mkdocs-macros-plugin>=1.0.0",
]
[tool.setuptools.packages.find]
include = ["asp*", "source*", "generated*", "spec*"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["F", "W", "I"]
[tool.ruff.format]
quote-style = "double"