-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.22 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
[tool.poetry]
name = "Beatrice"
version = "0.3.0"
description = ""
authors = ["Peter DeVita <[email protected]>"]
license = "AGPL"
[tool.poetry.dependencies]
python = "^3.10"
nextcord = {extras = ["voice"], version = "^2.5"}
bs4 = "^0.0.1"
lxml = "^4.8.0"
aiohttp = "^3.8.1"
aioconsole = "^0.6"
dateparser = "^1.1.0"
numpy = { version = "^1.24", optional = true }
yt-dlp = { version = "^2023.7.6", optional = true }
aiofiles = "^0.8.0"
uvloop = { version = "^0.16.0", optional = true }
ormar = "^0.11.2"
aiomysql = { version = "^0.1.1", optional = true }
PyMySQL = { version = "^1.0.2", optional = true }
aiosqlite = { version = "^0.19", optional = true }
nextcord-ormar = "^0.3"
aiodns = { version = "^3.0.0", optional = true }
Brotli = { version = "^1.0.9", optional = true }
cchardet = { version = "^2.1.7", optional = true }
openai = "^0.27"
tiktoken = "^0.4"
anthropic = "^0.18.1"
groq = "^0.4.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
beatrice = 'beatrice.main:main'
[tool.poetry.extras]
uvloop = ["uvloop"]
mysql = ["aiomysql", "PyMySQL"]
sqlite = ["aiosqlite"]
speed = ["aiodns", "Brotli", "cchardet"]
audio = ["numpy", "yt-dlp"]