forked from Skull-boy/agent-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (28 loc) · 771 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (28 loc) · 771 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-contracts"
version = "0.1.0"
description = "Framework-independent contracts and validation tooling for AI agents and automated workflows."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Shinjan Das" }
]
dependencies = [
"PyYAML>=6.0,<7.0",
"jsonschema>=4.20,<5.0",
]
[project.scripts]
agent-contracts = "agent_contracts.cli:main"
[project.urls]
Repository = "https://github.com/Skull-boy/agent-contracts"
Issues = "https://github.com/Skull-boy/agent-contracts/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
agent_contracts = [
"schemas/v1/*.json"
]