-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (30 loc) · 928 Bytes
/
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
[tool.poetry]
name = "fred"
version = "2.24.0"
description = "A Discord bot for the Satisfactory Modding Discord "
authors = ["Feyko <feykook@gmail.com>", "Mircea Roata <mircearoatapalade@yahoo.ro>", "Borketh <does.not.kompute@gmail.com>"]
license = "MIT License"
[tool.poetry.dependencies]
python = "^3.12.0"
nextcord = { extras = ["speed"], version = "^3.0.1" }
Pillow = "^11.0.0"
pytesseract = "^0.3.13"
python-dotenv = "^1.0.1"
algoliasearch = "^4.11.2"
SQLObject = "^3.12.0"
aiohttp = "^3.11.11"
semver = "^3.0.2"
pyre2-updated = "^0.3.8"
regex = "^2024.11.6"
psycopg = { extras = ["binary"], version = "^3.2.3" }
[tool.poetry.group.dev.dependencies]
black = {extras = ["d"], version = "^24.8.0"}
jsonpickle = "^3.0.0"
[tool.poetry.scripts]
fred = "fred.__main__:main"
[tool.black]
line-length = 120
target-version = ['py312']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"