-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.12 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
[project]
name = "esopn"
version = "0.1.0"
description = "AI Sports Commentator Duo - Real-time commentary for AI coding agents"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mss>=10.0.0,<11.0.0",
"google-genai>=1.0.0,<2.0.0",
"torch>=2.0.0,<3.0.0",
"torchaudio>=2.0.0,<3.0.0",
"transformers>=4.52.0,<5.0.0",
"sounddevice>=0.5.0,<1.0.0",
"soundfile>=0.12.0,<1.0.0",
"numpy>=1.24.0,<3.0.0",
"Pillow>=10.0.0,<12.0.0",
"pydantic>=2.0.0,<3.0.0",
"pydantic-settings>=2.0.0,<3.0.0",
"rich>=13.0.0,<15.0.0",
"typer>=0.9.0,<1.0.0",
"pynput>=1.7.0,<2.0.0",
"elevenlabs>=1.0.0,<2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0,<9.0.0",
"ruff>=0.1.0,<1.0.0",
]
[project.scripts]
esopn = "esopn.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/esopn"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0,<9.0.0",
"ruff>=0.1.0,<1.0.0",
]