-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (38 loc) · 1009 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "activitypub-testsuite"
version = "0.1.0"
description = ""
authors = ["Steve Bate <svc-github@stevebate.net>"]
readme = "README.md"
packages = [{ include = "activitypub_testsuite" }]
[tool.poetry.dependencies]
python = "^3.11"
dictlib = "^1.1.5"
cryptography = "^43.0.1"
httpx = "^0.27.0"
pytest-json-report = "^1.5.0"
pytest-metadata = "^3.0.0"
jinja2 = "^3.1.2"
click = "^8.1.7"
rfc3987 = "^1.3.8"
pytest = "^8.3.2"
pytest-asyncio = "^0.24.0"
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
ruff = "0.6.4"
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
aptest = "activitypub_testsuite.cli:aptest"
[tool.poetry.plugins."pytest11"]
ap_json_report = "activitypub_testsuite.plugins"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"ap_reqlevel: ActivityPub requirements level",
"ap_capability: ActivityPub/AS2 capability required for test",
]