-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (71 loc) · 1.95 KB
/
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
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
[tool.poetry]
name = "discord-tron-client"
version = "0.1.0"
description = "A worker process for PyTorch nodes that connect to the central Discord bot hub."
authors = ["bghira <[email protected]>"]
license = "GPL3"
readme = "README.md"
packages = [{include = "discord_tron_client"}]
[tool.poetry.scripts]
client = "discord_tron_client.__main__:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
websockets = "^10.4"
poetry = "^1.4.1"
flask = "^2.2.3"
psutil = "^5.9.4"
websocket = "^0.2.1"
diffusers = "^0.31.0"
transformers = {git = "https://github.com/huggingface/transformers"}
tensorflow = {extras = ["cuda"], version = "^2.17.0"}
accelerate = "^0.29.3"
numpy = "<2.0.0"
torch = "^2.4.1+cu124"
torchaudio = "^2.1.0+cu124"
colorama = "^0.4.6"
compel = "^2.0.2"
llama-cpp-python = "^0.1.74"
peft = "^0.10.0"
sentencepiece = "^0.2.0"
tokenizers = "^0.19.1"
suno-bark = {git = "https://github.com/bghira/bghira-bark"}
pydub = "^0.25.1"
tiktoken = "^0.3.3"
pyopenssl = "^23.1.1"
black = "^23.3.0"
torchvision = "^0.19.1+cu124"
torchmetrics = "^0.11.4"
opencv-contrib-python = "^4.7.0.72"
controlnet-aux = "^0.0.3"
k-diffusion = "^0.0.14"
safetensors = "^0.4.3"
split-image = "^2.0.1"
realesrgan = {git = "https://github.com/sberbank-ai/Real-ESRGAN.git"}
invisible-watermark = "^0.2.0"
discord-py-slash-command = "^4.2.1"
dadaptation = "^3.1"
virtualenv = "^20.26.4"
xformers = "^0.0.28"
pytorch-triton = "^3.1.0+5fe38ffd73"
importlib = "^1.0.4"
clip-anytorch = "^2.6.0"
protobuf = "<5.0.0"
lycoris-lora = "^3.0.0.post1"
[[tool.poetry.source]]
name = "default"
url = "https://pypi.org/simple"
priority = "primary"
[[tool.poetry.source]]
name = "pytorch"
secondary = true
url = "https://download.pytorch.org/whl/cu124"
[[tool.poetry.source]]
name = "pytorch-nightly"
secondary = true
url = "https://download.pytorch.org/whl/nightly/cu124"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"