forked from avaraline/incarnator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (62 loc) · 1.65 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "incarnator"
version = "0.12.0"
description = "An ActivityPub/Fediverse server."
authors = [
{ name = "Dan Watson", email = "[email protected]" }
]
dependencies = [
"blurhash-python>=1.2.2",
"cachetools>=5.3.3",
"cryptography>=42.0.5",
"dj-database-url>=2.1.0",
"django~=4.2.0",
"django-cache-url>=3.4.5",
"django-cors-headers>=4.3.1",
"django-debug-toolbar>=4.3.0",
"django-htmx>=1.17.3",
"django-storages[google,boto3]>=1.14.2",
"gunicorn>=22.0.0",
"httpx>=0.27.0",
"markdown-it-py>=3.0.0",
"pillow>=10.3.0",
"psycopg[binary]>=3.1.18",
"pycountry>=23.12.11",
"pydantic-settings>=2.2.1",
"pydantic[email]>=2.7.1",
"pyld>=2.0.4",
"pymemcache>=4.0.0",
"python-dateutil>=2.9.0.post0",
"redis>=5.0.4",
"sentry-sdk>=1.45.0",
"urlman>=2.0.1",
"uvicorn>=0.29.0",
"whitenoise>=6.6.0",
"pywebpush>=2.0.0",
"deepmerge>=2.0.0",
"rq>=2.1.0",
]
readme = "README.md"
requires-python = ">= 3.11"
[dependency-groups]
dev = [
"mock>=5.1.0",
"pre-commit>=3.7.0",
"pytest-asyncio>=0.23.6",
"pytest-django>=4.8.0",
"pytest-dotenv>=0.5.2",
"pytest-httpx>=0.30.0",
]
[tool.pytest.ini_options]
addopts = "--tb=short --ds=takahe.settings --import-mode=importlib"
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"ignore:There is no current event loop",
"ignore:No directory at",
"ignore:DateTimeField Post.created",
"ignore:'index_together' is deprecated",
"ignore:Deprecated call to",
"ignore:pkg_resources is deprecated as an API",
"ignore:Type google._upb",
"ignore:Marks applied to fixtures",
]