diff --git a/README.md b/README.md index 6159be46..9a1ce491 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ +code_style diff --git a/pyproject.toml b/pyproject.toml index d733fcd4..ee518d2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,11 @@ pyro = ["Pyrogram", "TgCrypto"] test = ["pytest", "pytest-asyncio", "flaky"] all = ["pytest", "pytest-asyncio", "flaky", "Pyrogram", "TgCrypto"] +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" + +# pytest配置 [tool.pytest.ini_options] asyncio_mode = "auto" log_cli = true @@ -48,6 +53,8 @@ log_cli_level = "INFO" log_cli_format = "%(message)s" log_cli_date_format = "%Y-%m-%d %H:%M:%S" -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" +# 格式配置 +[tool.black] +include = '\.pyi?$' +line-length = 120 +target-version = ['py38', 'py39', 'py310']