-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 904 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
[tool.pytest.ini_options]
testpaths = ["service/backend/tests"]
python_files = ["test_*.py"]
[tool.poetry]
name = "wand"
version = "0.1.0"
description = "Wand is yet another awesome ActivityPub relay, in Python. 😘"
authors = ["Mattholy <[email protected]>"]
license = "WTFPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.109.2"
httpsig = "^1.3.0"
redis-om = "^0.2.1"
redis = ">=3.5.3,<5.0.0"
gunicorn = "^21.2.0"
uvicorn = "^0.27.0.post1"
requests = "^2.31.0"
colorlog = "^6.8.2"
sqlalchemy = "^2.0.25"
psycopg2-binary = "^2.9.9"
cryptography = "^42.0.2"
python-gnupg = "^0.5.2"
aiohttp = "^3.9.3"
asyncpg = "^0.29.0"
greenlet = "^3.0.3"
arrow = "^1.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
httpx = "^0.26.0"
setuptools = "^69.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"