-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 925 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
[project]
name = "whatsapp_transcribe"
version = "0.1.0"
description = "Transcriptions of Whatsapp Voice Messages"
authors = [
{name = "Sebastian Moßburger", email = "[email protected]"},
]
dependencies = [
"faster-whisper>=1.0.2",
"fastapi>=0.111.0",
"twilio>=9.0.5",
"langchain>=0.2.1",
"langchain-community>=0.2.3",
"transformers>=4.41.2",
"torch>=2.3.1",
"flash-attention>=1.0.0",
"langchain-text-splitters>=0.2.1",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=3.7.0",
"ruff>=0.4.3",
"pytest>=8.2.0",
"langchain-community>=0.2.1",
"pytest-cov>=5.0.0",
"pdoc>=14.5.0",
]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP"]
ignore = ["D203", "D212", "N803"]