Add more info in pyproject.toml and setup script install

This commit is contained in:
Gabriel Augendre 2019-12-27 19:07:12 +01:00
parent 653a144fbc
commit 6d9a168f7a
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -1,8 +1,12 @@
[tool.poetry]
name = "cleantoots"
version = "0.1.2"
description = ""
version = "0.1.4"
description = "Cleanup your toot history."
license = "GPL-3.0-or-later"
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
readme = "README.md"
homepage = "https://github.com/Crocmagnon/cleantoots/tree/master"
keywords = ["mastodon", "toot"]
[tool.poetry.dependencies]
python = "^3.8"
@ -14,6 +18,9 @@ pendulum = "^2.0.5"
pytest = "^5.2"
black = "^19.10b0"
[tool.poetry.scripts]
cleantoots = 'cleantoots.main:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"