-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 964 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 964 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
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentdid"
version = "0.1.0"
description = "Cryptographic proof that a human stands behind an AI agent."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
dependencies = [
"fastapi~=0.135.3",
"uvicorn[standard]~=0.42.0",
"sqlalchemy[asyncio]~=2.0.48",
"asyncpg~=0.31.0",
"alembic~=1.18.4",
"pynacl~=1.6.2",
"pyjwt~=2.12.1",
"cryptography~=46.0.6",
"click~=8.3.1",
"httpx~=0.28.1",
"resend~=2.27.0",
"pydantic-settings~=2.13.1",
"base58~=2.1.1",
"tomli-w~=1.2.0",
]
[project.optional-dependencies]
dev = [
"pytest~=9.0.2",
"pytest-asyncio~=1.3.0",
"pytest-cov~=7.1.0",
"aiosqlite~=0.22.1",
]
[project.scripts]
agentdid = "agentdid.cli.main:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/agentdid"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"