-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (106 loc) · 3.14 KB
/
Copy pathpyproject.toml
File metadata and controls
119 lines (106 loc) · 3.14 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[project]
name = "projectgabriel"
version = "2.0.1"
description = "Real-time VRChat AI powered by Gemini Live with voice interaction, OSC control, and YOLOv8n person tracking"
requires-python = ">=3.11,<3.13"
license = {file = "LICENSE"}
authors = [
{name = "HoppouAI"}
]
keywords = ["vrchat", "gemini", "ai", "voice", "osc", "yolo"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"google-genai==2.6.0",
"pyaudio>=0.2.14",
"python-osc>=1.8.0",
"pytz>=2024.1",
"pyyaml>=6.0",
"ruamel.yaml>=0.18.0",
"pygame>=2.5.0",
"numpy>=1.24.0",
"scipy>=1.11.0",
"pedalboard>=0.9.0",
"ultralytics>=8.0.0",
"lap>=0.5.12",
"bettercam>=1.0.0",
"opencv-python>=4.8.0",
"mss>=9.0.0",
"aiohttp>=3.9.0",
"beautifulsoup4>=4.12.0",
"Pillow>=10.0.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"python-multipart>=0.0.9",
"websockets>=12.0",
"mutagen>=1.47.0",
"pymongo>=4.6.0",
"pynput>=1.7.0",
"pyotp>=2.9.0",
"torch>=2.1.0",
"torchvision>=0.16.0",
"torchaudio>=2.1.0",
"requests>=2.31.0",
"soundfile>=0.12.0",
"stream2sentence>=0.3.0",
"httpx>=0.27.0",
"google-cloud-texttospeech>=2.16.0",
"transformers>=4.40.0",
"psutil>=6.0.0",
"colorama>=0.4.6",
"discord.py-self>=2.0.0",
"nltk>=3.8.0",
"chromadb>=1.0.0",
"protobuf==3.20.3",
"imageio-ffmpeg>=0.4.9",
]
[project.optional-dependencies]
# local LLM backend (LM Studio + parakeet.cpp STT). historically this pulled
# an extra STT wheel, but parakeet ships as a prebuilt native library that we
# load with ctypes and fetch at runtime, so there's nothing left to install.
# torch/torchaudio (yolo + face tracking) and requests are already core deps,
# and silero VAD is grabbed via torch.hub, so the local extra is now empty.
# kept around so `pip install .[local]` still works in existing setups.
local = []
[dependency-groups]
dev = [
"ruff>=0.4.0",
"pytest>=8.0.0",
]
[project.urls]
Repository = "https://github.com/HoppouAI/ProjectGabriel-Remaster"
Issues = "https://github.com/HoppouAI/ProjectGabriel-Remaster/issues"
[project.scripts]
gabriel = "main:main"
gabriel-control = "control_server:run_control_server"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.uv.pip]
index-url = "https://pypi.org/simple"
[[tool.uv.index]]
name = "pytorch-cu126"
url = "https://download.pytorch.org/whl/cu126"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu126" }
torchvision = { index = "pytorch-cu126" }
torchaudio = { index = "pytorch-cu126" }
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["src"]