pyproject.toml
[tool.poetry]
name = "desuko"
version = "0.1.1"
description = "An extensible Discord bot, written in Python & Pycord."
license = "MIT"
authors = ["Arisu Wonderland <arisuchr@riseup.net>"]
readme = "README.md"
repository = "https://github.com/arichr/desuko-discord"
documentation = "https://arichr.github.io/desuko-discord/"
keywords = ["discord", "async", "bot", "python3", "discord-bot", "modular", "module", "library"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Communications",
"Topic :: Communications :: Conferencing",
"Topic :: Communications :: Internet Phone",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
PyYAML = "^6.0"
py-cord = "^2.2.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
portray = "^1.7.0"
[tool.poetry.group.dev.dependencies]
wemake-python-styleguide = "^0.16.1"
pylint = "^2.15.0"
[tool.isort]
line_length = 100
[tool.portray.mkdocs]
site_name = "Desuko"
repo_url = "https://github.com/arichr/desuko-discord"
edit_uri = "https://github.com/arichr/desuko-discord/blob/main/"
[[tool.portray.mkdocs.nav]]
Home = "README.md"
[[tool.portray.mkdocs.nav]]
[[tool.portray.mkdocs.nav."Getting started"]]
"1. Installation" = "docs/getting_started/1_Installation.md"
[[tool.portray.mkdocs.nav."Getting started"]]
"2. Configuration" = "docs/getting_started/2_Configuration.md"
[[tool.portray.mkdocs.nav]]
[[tool.portray.mkdocs.nav.Development]]
"Hello, Desuko!" = "docs/modules/Development/HelloDesuko.md"
[[tool.portray.mkdocs.nav.Development]]
"Handlers and subscribers" = "docs/modules/Development/HandlersAndSubs.md"
[tool.portray.mkdocs.theme]
name = "material"
palette = {primary = "cyan", accent = "pink"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"