-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.87 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
[project]
name = "Lightning"
version = "4.10.0"
description = "Powerful moderation & utilities Discord App (Bot)"
authors = [{name="LightSage", email="[email protected]"}]
license = "AGPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.9.0,<3.12"
[project.urls]
homepage = "https://lightningbot.app/"
repository = "https://github.com/lightning-bot/Lightning"
[tool.poetry]
requires-poetry = ">=2.0"
packages = [
{ include = "lightning/**/*.py" },
{ include = "LICENSE" },
{ include = "LICENSE.header" }
]
[tool.poetry.dependencies]
"discord.py" = {git = "https://github.com/Rapptz/discord.py.git", branch="master", extras = ["speed"]}
python-dateutil = "^2.8.1"
parsedatetime = "^2.6"
psutil = "^5.7.2"
tabulate = "^0.9.0"
feedparser = "^6.0.10"
asyncpg = "^0.30.0"
discord-ext-menus = {git = "https://github.com/Rapptz/discord-ext-menus.git"}
lru_dict = "^1.3.0"
sentry-sdk = ">=2.0.0,<3.0.0"
py-flags = "^1.1.4"
jishaku = "^2.6.0"
rapidfuzz = "^3.0.0"
typer = "^0.15.1"
tomlkit = "^0.13.2"
uvloop = {version = "^0.21.0", platform = "linux"}
orjson = "^3.6.0"
beautifulsoup4 = "^4.12.3"
lxml = "^5.2.1"
sanctum-tc = "^0.8.0"
objgraph = "^3.5.0"
Wand = "^0.6.11"
rich = "^13.3.2"
setuptools = "^75.1.0"
wheel = "^0.43.0"
matplotlib = "^3.7.0"
numpy = "1.26.4"
redis = {extras = ["hiredis"], version = "^5.0.1"}
unidecode = "^1.3.6"
prometheus-async = "^22.2.0"
spacy = "^3.7.5"
pandas = "^2.2.2"
en-core-web-sm = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1-py3-none-any.whl"}
[project.scripts]
lightning = "lightning.cli.main:parser"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
isort = "^5.12.0"
pre-commit = "^3.2.0"
[tool.autopep8]
max_line_length = 120
ignore = ["E301", "F402"]
in-place = true
recursive = true
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"