-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.48 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
[tool.poetry]
name = "BOT"
version = "0.1.0"
description = "A discord bot that can do stuff."
authors = ["Nolan Gregory <[email protected]>"]
readme = "README.md"
[project]
requires-python = ">=3.10"
[tool.poetry.dependencies]
python = "3.10.13"
"discord.py" = "^2.3.0"
python-dotenv = "^1.0.0"
python-weather = "^1.0.3"
bruhcolor = "^0.0.56"
matplotlib = "^3.7.1"
prettytable = "^3.8.0"
wcwidth = "^0.2.6"
PyNaCl = "^1.5.0"
cffi = "^1.15.1"
pycparser = "^2.21"
discordwebhook = "^1.0.3"
ruff = "^0.0.276"
pylint = "^2.17.4"
black = "^23.3.0"
invoke = "^2.1.3"
flake8 = "^6.0.0"
mypy = "^1.4.1"
bandit = "^1.7.5"
gtts = "^2.3.2"
openai = ">=0.27.8"
bruhanimate = "^0.1.72"
ffmpeg-python = ">=0.2.0"
numpy = "1.23.5"
requests = "2.31.0"
tqdm = "^4.66.1"
wget = "^3.2"
faiss-cpu = "1.7.3"
librosa = "0.9.1"
pyworld = "0.3.4"
scipy = "1.11.1"
soundfile = "0.12.1"
praat-parselmouth = "^0.4.3"
fairseq = "0.12.2"
numba = "0.56.4"
torchcrepe = "0.0.21"
tensorboard = "^2.15.1"
gradio = "4.14.0"
ffmpy = "0.3.1"
tensorboardx = "^2.6.2.2"
edge-tts = "6.1.9"
pypresence = "^4.3.0"
beautifulsoup4 = "^4.12.3"
torch = {version = "^2.1.2+cu118", source = "pytorch"}
torchvision = {version = "^0.16.2+cu118", source = "pytorch"}
youtube-dl = "^2021.12.17"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[tool.poetry.dev-dependencies]
pytest = "^7.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"