* Added base admin login/logout flows * Ignore local database * Channel model * Admin interface for channels and plugins * Added database tests along with workflows * Added some docstrings * Ignore .coverage file * Creating plugins docs WIP * Documentation * Black everything * Some documentation * Coverage for the plugins package as well * DB Fixes * Absolute FROM in Dockerfile * Database and logging fixes * Slack: Support private channels * Added pre-commit * black'd * Fixed UserQuery.create * Fixed ChannelPluginQuery.create exists call * Added ChannelPlugin menu for debugging * Ignore sqlite databases * Updated contributing docs
43 lines
1 KiB
TOML
43 lines
1 KiB
TOML
[tool.poetry]
|
|
name = "butterrobot"
|
|
version = "0.0.3"
|
|
description = "What is my purpose?"
|
|
authors = ["Felipe Martin <me@fmartingr.com>"]
|
|
license = "GPL-2.0"
|
|
packages = [
|
|
{ include = "butterrobot" },
|
|
{ include = "butterrobot_plugins_contrib" },
|
|
]
|
|
include = ["README.md"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
structlog = "^20.1.0"
|
|
colorama = "^0.4.3"
|
|
dice = "^3.1.0"
|
|
flask = "^1.1.2"
|
|
requests = "^2.24.0"
|
|
waitress = "^1.4.4"
|
|
dataset = "^1.3.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^19.10b0"
|
|
flake8 = "^3.7.9"
|
|
rope = "^0.16.0"
|
|
isort = "^4.3.21"
|
|
ipdb = "^0.13.2"
|
|
pytest = "^6.1.2"
|
|
pytest-cov = "^2.10.1"
|
|
pre-commit = "^2.10.0"
|
|
|
|
[tool.poetry.plugins]
|
|
[tool.poetry.plugins."butterrobot.plugins"]
|
|
"fun.loquito" = "butterrobot_plugins_contrib.fun:LoquitoPlugin"
|
|
"fun.dice" = "butterrobot_plugins_contrib.fun:DicePlugin"
|
|
"fun.coin" = "butterrobot_plugins_contrib.fun:CoinPlugin"
|
|
"dev.ping" = "butterrobot_plugins_contrib.dev:PingPlugin"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|