36 lines
839 B
TOML
36 lines
839 B
TOML
[tool.poetry]
|
|
name = "image-bot-django"
|
|
version = "0.1.0"
|
|
description = "A small bot to post a picture in the fediverse"
|
|
authors = ["Julian-Samuel Gebühr <julian-samuel@gebuehr.net>"]
|
|
maintainers = ["Julian-Samuel Gebühr <julian-samuel@gebuehr.net>"]
|
|
readme = "README.md"
|
|
packages = [{include = "imagebot"}]
|
|
license = "MIT"
|
|
keywords = ["fediverse", "mastodon", "gotosocial", "bot"]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
requests = "*"
|
|
validators = "*"
|
|
Django = "*"
|
|
fontawesomefree = "*"
|
|
Pillow = "*"
|
|
django-crispy-forms = "*"
|
|
crispy-bootstrap4 = "*"
|
|
|
|
[tool.poetry.scripts]
|
|
ibot = 'imagebot.manage:main'
|
|
ibotpost = 'idescriptor.bot:main'
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = "^7.4.0"
|
|
pytest-cov = "^4.1.0"
|
|
requests-mock = "^1.11.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|