-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentscore-py"
version = "2.1.0"
description = "Python client for the AgentScore APIs"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
keywords = ["agentscore", "x402", "erc-8004", "agent", "trust", "reputation", "wallet", "blockchain", "ai-agent", "agentic-payments"]
dependencies = [
"httpx>=0.25.0,<1.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://agentscore.sh"
Repository = "https://github.com/agentscore/python-sdk"
Issues = "https://github.com/agentscore/python-sdk/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"respx>=0.21",
]
[tool.pytest.ini_options]
addopts = "--cov=agentscore --cov-report=term-missing --cov-fail-under=95"
[tool.hatch.build.targets.wheel]
packages = ["agentscore"]
[dependency-groups]
dev = [
"ruff>=0.11.0",
"ty>=0.0.32",
"vulture>=2.15",
"pytest-cov>=6.0",
"respx>=0.22.0",
"pytest-asyncio>=1.2.0",
"python-dotenv>=1.2.1",
"lefthook>=2.1.6",
]
[tool.ty.src]
include = ["agentscore"]