Introduce a new command to toggle Skia-based image generation in the LevelUp cog, enhancing image quality and performance. Update the pyproject.toml file to include project metadata and dependencies, including skia-python. Modify the levelalert generator to support Skia, with fallback to the original implementation if necessary. Additionally, update the author list in info.json to include a new contributor.
19 lines
397 B
TOML
19 lines
397 B
TOML
[tool.isort]
|
|
profile = 'black'
|
|
line_length = 99
|
|
combine_as_imports = true
|
|
|
|
[tool.black]
|
|
line-length = 99
|
|
target-version = ['py38']
|
|
include = '\.pyi?$'
|
|
|
|
[tool.poetry]
|
|
name = "Ava-Cogs"
|
|
version = "0.1.0"
|
|
description = "A collection of cogs for Red-DiscordBot"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
skia-python = "^87.5"
|