c929e62386
Bumps the pylint group with 1 update in the / directory: [pylint](https://github.com/pylint-dev/pylint). Updates `pylint` from 3.2.6 to 3.3.1 - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.6...v3.3.1) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pylint ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
625 B
TOML
29 lines
625 B
TOML
[tool.poetry]
|
|
name = "webexmemebot"
|
|
version = "0.0.0" # Version is tracked by GitHub Releases
|
|
description = "Webex-based meme generation bot using memegen.link."
|
|
authors = ["luketainton"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11.2"
|
|
webex-bot = "^0.5.2"
|
|
pillow = "^11.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
coverage = "^7.6.8"
|
|
isort = "^5.13.2"
|
|
pylint = "^3.3.1"
|
|
pylint-exit = "^1.2.0"
|
|
pytest = "^8.3.3"
|
|
pre-commit = "^4.0.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
meme = "app.main:main"
|