2019-12-27 18:47:27 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "cleantoots"
|
2019-12-28 13:31:34 +01:00
|
|
|
version = "0.3.1"
|
2019-12-27 19:07:12 +01:00
|
|
|
description = "Cleanup your toot history."
|
|
|
|
license = "GPL-3.0-or-later"
|
2019-12-27 18:47:27 +01:00
|
|
|
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
2019-12-27 19:07:12 +01:00
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/Crocmagnon/cleantoots/tree/master"
|
|
|
|
keywords = ["mastodon", "toot"]
|
2019-12-27 19:51:34 +01:00
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"Topic :: Communications :: Chat",
|
|
|
|
"Topic :: Utilities"
|
|
|
|
]
|
2019-12-27 18:47:27 +01:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2019-12-27 22:35:50 +01:00
|
|
|
python = ">=3.6"
|
2019-12-27 18:47:27 +01:00
|
|
|
"Mastodon.py" = "^1.5.0"
|
|
|
|
click = "^7.0"
|
|
|
|
pendulum = "^2.0.5"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^5.2"
|
2019-12-27 18:52:12 +01:00
|
|
|
black = "^19.10b0"
|
2019-12-27 18:47:27 +01:00
|
|
|
|
2019-12-27 19:07:12 +01:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
cleantoots = 'cleantoots.main:cli'
|
|
|
|
|
2019-12-27 18:47:27 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|