cleantoots/pyproject.toml

36 lines
892 B
TOML

[tool.poetry]
name = "cleantoots"
version = "0.5.1"
description = "Cleanup your toot history."
license = "GPL-3.0-or-later"
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
readme = "README.md"
homepage = "https://git.augendre.info/gaugendre/cleantoots"
repository = "https://git.augendre.info/gaugendre/cleantoots"
keywords = ["mastodon", "toot"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = ">=3.6.2"
"Mastodon.py" = ">=1.5.0"
click = ">=7.0"
pendulum = ">=2.0.5"
html2text = ">=2019.9.26"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
black = "^21.6b0"
[tool.poetry.scripts]
cleantoots = 'cleantoots.main:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"