butterrobot/pyproject.toml

38 lines
889 B
TOML
Raw Normal View History

2020-04-22 21:58:06 +00:00
[tool.poetry]
name = "butterrobot"
2020-08-11 10:57:56 +00:00
version = "0.0.2a4"
2020-04-22 21:58:06 +00:00
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"
2020-09-17 18:16:42 +00:00
dice = "^3.1.0"
2020-10-28 10:19:30 +00:00
flask = "^1.1.2"
requests = "^2.24.0"
2020-04-22 21:58:06 +00:00
[tool.poetry.dev-dependencies]
black = "^19.10b0"
flake8 = "^3.7.9"
rope = "^0.16.0"
isort = "^4.3.21"
ipdb = "^0.13.2"
[tool.poetry.plugins]
[tool.poetry.plugins."butterrobot.plugins"]
"fun.loquito" = "butterrobot_plugins_contrib.fun:LoquitoPlugin"
"dev.ping" = "butterrobot_plugins_contrib.dev:PingPlugin"
2020-09-17 18:16:42 +00:00
"fun.dice" = "butterrobot_plugins_contrib.fun:DicePlugin"
2020-04-22 21:58:06 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"