-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (61 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
66 lines (61 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agent-passport-system"
version = "2.4.0a3"
description = "Python SDK for the Agent Passport System. Identity, delegation, governance, data source registration, training attribution, per-period attribution settlement, mutual authentication, evidentiary type safety, Wave 1 accountability primitives (action, authority-boundary, custody, contestability, bundle), Cognitive Attestation, Instruction Provenance Receipts. Cross-language parity with agent-passport-system npm v2.6.0-alpha.4 verified by byte-identical canonical JSON fixtures."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [
{ name = "Tymofii Pidlisnyi", email = "signal@aeoess.com" }
]
keywords = ["agent", "identity", "ed25519", "delegation", "mcp", "ai-agents", "governance"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"pynacl>=1.5.0",
"base58>=2.1.0",
]
[project.urls]
Homepage = "https://aeoess.com"
Repository = "https://github.com/aeoess/agent-passport-python"
Documentation = "https://aeoess.com/llms-full.txt"
"npm SDK" = "https://www.npmjs.com/package/agent-passport-system"
[tool.hatch.build.targets.wheel]
packages = ["src/agent_passport"]
# Explicit sdist contents. Hatch's default sdist sweep would otherwise pull
# in tests/, papers/, drafts/, working-group dossiers, and other repo-local
# material that has no business shipping to PyPI consumers. This is the
# hatch-native equivalent of a setuptools MANIFEST.in — explicit beats
# implicit at audit time.
[tool.hatch.build.targets.sdist]
include = [
"src/agent_passport/**",
"README.md",
"LICENSE",
"NOTICE",
"pyproject.toml",
"CHANGELOG.md",
]
exclude = [
"tests/**",
"papers/**",
"drafts/**",
"docs/drafts/**",
".github/**",
"*.log",
"*.tgz",
]
[tool.pytest.ini_options]
testpaths = ["tests"]