diff options
| author | 2023-04-18 18:03:02 +0800 | |
|---|---|---|
| committer | 2023-04-18 18:03:02 +0800 | |
| commit | 025020c503ef5b8dc0270197c5b1e6d4e0f8807d (patch) | |
| tree | 25f8c8d8882647e22ea0acebadafef99306f4c98 /pyproject.toml | |
| parent | 074ad0c914ae0b53ace46ed5d4c24205eacbabaa (diff) | |
| download | HydroRoll-025020c503ef5b8dc0270197c5b1e6d4e0f8807d.tar.gz HydroRoll-025020c503ef5b8dc0270197c5b1e6d4e0f8807d.zip | |
✨本体文件
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0bf62ba --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,36 @@ +[tool.poetry] +name = "alicebot-example" +version = "0.1.0" +description = "AliceBot Example Bot" +license = "MIT" +authors = ["st1020 <stone_1020@qq.com>"] +readme = "README.md" +repository = "https://github.com/st1020/alicebot-example" + +[tool.poetry.dependencies] +python = "^3.8" +watchfiles = "^0.16.0" +alicebot = "^0.6.0" +alicebot-adapter-cqhttp = "^0.6.0" + +[tool.poetry.dev-dependencies] +black = "^22.6.0" +isort = "^5.10.0" +pre-commit = "^2.20.0" +pre-commit-hooks = "^4.2.0" + +[tool.pydantic-pycharm-plugin] +ignore-init-method-arguments = true + +[tool.black] +target-version = ["py38", "py39", "py310"] + +[tool.isort] +profile = "black" +length_sort = true +skip_gitignore = true +force_sort_within_sections = true + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" |
