forked from deepgram-starters/flask-live-transcription
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 873 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
[project]
name = "flask-live-transcription"
version = "0.1.0"
description = ""
authors = [{ name = "Jacob-Lasky", email = "jacob.s.lasky@gmail.com" }]
requires-python = ">=3.12, <3.13"
readme = "README.md"
dependencies = [
"deepgram-sdk==6.0.1",
"fastapi>=0.115.0,<1",
"python-socketio[asyncio]>=5.11.0,<6",
"uvicorn>=0.30.0,<1",
"httpx>=0.27.0,<1",
"python-multipart>=0.0.9,<1",
"python-dotenv==1.0.0",
"pydub>=0.25.1,<0.26",
"sounddevice>=0.5.2,<0.6",
"mutagen>=1.47.0",
]
[tool.uv]
package = false
dev-dependencies = [
"aiohttp>=3.9.0",
"pytest>=8.0",
"pytest-asyncio>=0.23,<1.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
asyncio_default_test_loop_scope = "session"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"