-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (63 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
67 lines (63 loc) · 1.33 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
67
[project]
name = "acoustid-server"
version = "26.3.1"
description = "AcoustID server"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"acoustid-ext",
"aiohttp>=3.11.13",
"alembic",
"asyncpg>=0.30.0",
"attrs",
"blinker",
"cachetools",
"click",
"flask>=2,<3",
"gevent",
"gunicorn",
"markdown==3.1.1",
"mbdata==25.0.0",
"msgspec>=0.19.0",
"nats-py>=2.9.0",
"psycogreen",
"psycopg2",
"python3-openid==3.1.0",
"pytz",
"rauth==0.7.3",
"redis",
"requests",
"schedule==0.6.0",
"sentry-sdk[flask]>=2.22.0",
"six",
"sqlalchemy>=2,<3",
"starlette>=0.46.1",
"statsd",
"uvicorn[standard]>=0.34.0",
"zstd>=1.5.6.6",
]
[dependency-groups]
dev = [
"asyncpg-stubs>=0.30.1",
"black",
"flake8",
"httpx>=0.28.1",
"isort",
"msgpack-types>=0.5.0",
"mypy",
"pyflakes",
"pytest",
"pytest-asyncio>=0.25.3",
"types-pytz>=2025.1.0.20250204",
"types-redis>=4.6.0.20241004",
"types-requests>=2.32.0.20250306",
"types-six>=1.17.0.20250304",
"types-zstd>=1.5.6.6.20250306",
]
[tool.setuptools.packages.find]
include = ["acoustid*"]
namespaces = false
[tool.uv.sources]
acoustid-ext = { path = "libs/acoustid_ext" }
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"