-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.68 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
[tool.poetry]
name = "rodhaj"
version = "0.1.0"
description = "Transprogrammer's custom modmail bot"
authors = ["No767 <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4"
discord-py = {extras = ["speed"], version = "^2.3.2"}
uvloop = {markers = "sys_platform != \"win32\"", version = "^0.19.0"}
winloop = {markers = "sys_platform == \"win32\"", version = "^0.1.0"}
asyncpg = "^0.29.0"
discord-ext-menus = {git = "https://github.com/Rapptz/discord-ext-menus", rev = "8686b5d1bbc1d3c862292eb436ab630d6e9c9b53"}
psutil = "^5.9.8"
pygit2 = "^1.13.3"
python-dateutil = "^2.8.2"
click = "^8.1.7"
typing-extensions = "^4.9.0"
environs = "^10.3.0"
async-lru = "^2.0.4"
msgspec = "^0.18.6"
jishaku = "^2.5.2"
[tool.poetry.group.dev.dependencies]
# These are pinned by major version
# To not get dependabot to constantly update them
# https://python-poetry.org/docs/dependency-specification/
pre-commit = "^3"
pyright = "^1.1"
ruff = "^0.1"
watchfiles = "^0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-autobuild = "^2021.3.14"
sphinx-copybutton = "^0.5.2"
furo = "^2023.9.10"
[tool.isort]
profile = 'black'
combine_as_imports = true
combine_star = true
line_length = 80
[tool.pyright]
include = ["bot/**"]
exclude = [
"**/__pycache__",
"**/.mypy_cache",
"**/.dmpypy.json",
]
reportMissingImports = true
typeCheckingMode = "basic"
reportUnnecessaryTypeIgnoreComment = "warning"
[tool.bandit]
skips = ["B311", "B101"]
[tool.ruff]
ignore = ["E501", "N999", "E402", "S311"]
select = ["E", "F", "N", "ASYNC", "S", "ERA"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"