36 lines
655 B
TOML
36 lines
655 B
TOML
[project]
|
|
name = "pomice"
|
|
version = "2.10.0"
|
|
description = "The modern Lavalink wrapper designed for Discord.py"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"aiohttp>=3.7.4,<4",
|
|
"discord>=2.3.2",
|
|
"orjson",
|
|
"websockets",
|
|
]
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools>=42",
|
|
"wheel"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
|
|
[tool.mypy]
|
|
mypy_path = "./"
|
|
files = ["pomice"]
|
|
disallow_untyped_defs = true
|
|
disallow_any_unimported = true
|
|
no_implicit_optional = true
|
|
check_untyped_defs = true
|
|
warn_unused_ignores = true
|
|
show_error_codes = true
|
|
|
|
[tool.pyright]
|
|
typeCheckingMode = "standard"
|