25 lines
442 B
TOML
25 lines
442 B
TOML
[project]
|
|
name = "PyrogramBotBase"
|
|
authors = [{ name = "Profitroll" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
|
|
[tool.black]
|
|
line-length = 108
|
|
target-version = ["py311", "py312", "py313"]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.mypy]
|
|
namespace_packages = true
|
|
install_types = true
|
|
strict = true
|
|
show_error_codes = true
|
|
|
|
[tool.pylint]
|
|
disable = ["line-too-long"]
|
|
|
|
[tool.pylint.main]
|
|
extension-pkg-whitelist = ["ujson"]
|
|
py-version = 3.11 |