-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 896 Bytes
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
[tool.poetry]
name = "lecturfier"
version = "0.1.0"
description = "Python Discord Bot with Lecture Updates and Quotes"
authors = ["markbeep <mrkswrn@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "../Lecturfier"}]
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.8.3"
async-timeout = "^4.0.2"
beautifulsoup4 = "^4.11.2"
colorthief = "^0.2.1"
discord-ext-menus = "^1.1"
"discord.py" = "2.5.2"
emoji = "^2.2.0"
honeybadger = "^0.17.0"
idna = "^3.4"
imageio = "^2.25.0"
numpy = "^1.24.2"
multidict = "^6.0.4"
Pillow = "^10.0.0"
psutil = "^5.9.4"
pytz = "^2022.7.1"
requests = "^2.28.2"
tabulate = "^0.9.0"
websockets = "^11.0.0"
apng = "^0.3.4"
dotenv = "^0.9.9"
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
pylint = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
start = "bot:run"