-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
39 lines (33 loc) · 861 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
36
37
38
39
[tool.poetry]
name = "AIAS"
version = "1.0"
description = "AIAS (Artifical Intelligence AntiSpam) is an open-source Discord bot that has innovative moderation features, such as nextgen word filter and AI-based spam detection."
authors = ["Exenifix"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
disnake = "^2.9.0"
python-dotenv = "^1.0.0"
scikit-learn = "^1.3.0"
exencolorlogs = "^1.1.1"
psutil = "^5.9.5"
asyncpg = "^0.28.0"
emoji = "^2.6.0"
exenenv = "^1.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
ruff = "^0.0.278"
isort = "^5.11.3"
black = "^23.7.0"
[tool.isort]
profile = "black"
line_length = 125
[tool.black]
line-length = 125
target-version = ["py311"]
[tool.ruff]
line-length = 125
target-version = "py310"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"