forked from mcb-dev/mCodingBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 961 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
40
41
42
43
44
45
46
47
[tool.poetry]
name = "mcodingbot"
version = "0.1.0"
description = "The Discord bot for the mCoding Discord server."
authors = ["Your Name <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
bot = "mcodingbot.__main__:main"
[tool.poetry.dependencies]
python = "^3.8,<3.11"
hikari = "^2.0.0.dev113"
hikari-crescent = "^0.6.0"
apgorm = "^1.0.0b12"
rapidfuzz = "^2.10.0"
cachetools = "^5.2.0"
types-cachetools = "^5.2.1"
floodgate-rs = "^0.1.1"
[tool.poetry.dev-dependencies]
nox = ">=2022.8.7"
black = "^23.1.0"
ruff = "^0.0.151"
isort = "^5.10.1"
mypy = "^1.0"
[tool.black]
skip-magic-trailing-comma = true
[tool.isort]
profile = "black"
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
strict = true
namespace_packages = true
enable_error_code = ["possibly-undefined"]
[[tool.mypy.overrides]]
module = 'asyncpg.*'
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"