-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (51 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
54 lines (51 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ghostbox"
version = '0.22.1'
description = "Ghostbox is a command line interface to local LLM (large language model) server applications, such as koboldcpp or llama.cpp. It's primary purpose is to give a simple, stripped-down way to engage with AI chat bots."
authors = [
{ name = "Marius Gerdes", email = "integr@gmail.com" }
]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"requests",
"pydantic",
"boto3",
"appdirs",
"lazy-object-proxy",
"openai-whisper",
"pyaudio",
"numpy",
"librosa",
"pydub",
"colorama",
"automodinit",
"deepspeed",
"docstring_parser",
"shutils",
"nltk",
"huggingface-hub",
"wget",
"kokoro_onnx[gpu]",
"websockets",
"duckduckgo-search",
"markdownify",
"h2",
"snac",
"pyperclip"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
[tool.setuptools]
packages = ["ghostbox"]
package-data = { "ghostbox" = ["data/**"] }
script-files = ["scripts/ghostbox", "scripts/ghostbox-tts"]
[project.urls]
"Homepage" = "https://github.com/mglambda/ghostbox"