webexmemebot/pyproject.toml

28 lines
567 B
TOML
Raw Permalink Normal View History

2023-07-21 23:57:14 +02:00
[tool.poetry]
name = "webexmemebot"
version = "0.1.0"
description = "Webex-based meme generation bot using memegen.link."
authors = ["luketainton"]
readme = "README.md"
[tool.poetry.dependencies]
2023-07-24 17:16:30 +02:00
python = "^3.11.2"
Release 2024-04-24.1 (#208) * chore(pip-dev)(deps-dev): bump pluggy from 1.4.0 to 1.5.0 (#201) Bumps [pluggy](https://github.com/pytest-dev/pluggy) from 1.4.0 to 1.5.0. - [Changelog](https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pluggy/compare/1.4.0...1.5.0) --- updated-dependencies: - dependency-name: pluggy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(pip-dev)(deps-dev): bump identify from 2.5.35 to 2.5.36 (#202) Bumps [identify](https://github.com/pre-commit/identify) from 2.5.35 to 2.5.36. - [Commits](https://github.com/pre-commit/identify/compare/v2.5.35...v2.5.36) --- updated-dependencies: - dependency-name: identify dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(pip-prod)(deps): bump webex-bot from 0.4.1 to 0.4.7 (#207) Bumps [webex-bot](https://github.com/fbradyirl/webex_bot) from 0.4.1 to 0.4.7. - [Release notes](https://github.com/fbradyirl/webex_bot/releases) - [Commits](https://github.com/fbradyirl/webex_bot/compare/v0.4.1...v0.4.7) --- updated-dependencies: - dependency-name: webex-bot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-24 21:54:29 +02:00
webex-bot = "^0.4.7"
pillow = "^10.3.0"
2024-04-21 18:20:58 +02:00
sentry-sdk = "^1.45.0"
2023-07-21 23:57:14 +02:00
[tool.poetry.group.dev.dependencies]
black = "^24.4.0"
coverage = "^7.4.4"
pylint = "^3.1.0"
2023-07-21 23:57:14 +02:00
pylint-exit = "^1.2.0"
pytest = "^8.1.1"
pre-commit = "^3.7.0"
2023-07-21 23:57:14 +02:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
2023-12-14 21:55:17 +01:00
meme = "app.main:main"