-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
54 lines (45 loc) · 1.21 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
[tool.poetry]
name = "oobabot"
version = "0.2.3"
description = "A Discord bot which talks to Large Language Model AIs running on oobabooga's text-generation-webui"
authors = ["Christopher Rude <chris@rudesoftware.net>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/chrisrude/oobabot"
[tool.poetry.dependencies]
aiohttp = "^3.8.4"
python = "^3.8.1"
"discord.py" = "^2.2.2"
pysbd = "^0.3.4"
ruamel-yaml = "^0.17.26"
[tool.poetry.scripts]
oobabot = 'oobabot.oobabot:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flakeheaven]
format = "grouped"
max-line-length = 88
show_source = true
[tool.flakeheaven.exceptions]
pycodestyle = ["-E203", "-W503", "-W504"]
[tool.poetry.group.test.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pre-commit = "^3.2.0"
pyright = "^1.1.325"
pytest = "^7.1"
pylint = "^2.17.4"
[tool.isort]
profile = "black"
force_single_line = true
force_sort_within_sections = true
single_line_exclusions = ["typing", "typing_extensions"]
[tool.pylint.'MAIN']
py-version = '3.8.1'
j = 8
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 88
disable = "C0116,R0902,R0903,R0912,R0913,R0914,W0511,W0621"
include-naming-hint = true