cleantoots/pyproject.toml

57 lines
1.2 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "cleantoots"
version = "0.7.0"
description = "Cleanup your toot history."
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
readme = "README.md"
2021-08-01 08:49:04 +02:00
homepage = "https://git.augendre.info/gaugendre/cleantoots"
repository = "https://git.augendre.info/gaugendre/cleantoots"
keywords = ["mastodon", "toot"]
2019-12-27 19:51:34 +01:00
classifiers = [
"License :: OSI Approved :: The Unlicense (Unlicense)",
2019-12-27 19:51:34 +01:00
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
2021-12-19 15:00:39 +01:00
python = ">=3.8,<4"
2021-06-19 18:26:19 +02:00
"Mastodon.py" = ">=1.5.0"
click = ">=7.0"
pendulum = ">=2.0.5"
html2text = ">=2019.9.26"
[tool.poetry.dev-dependencies]
2021-06-19 18:26:19 +02:00
pytest = "^6.2"
2021-12-19 14:21:43 +01:00
invoke = "^1.6.0"
pre-commit = "^2.16.0"
tox = "^3.24.4"
[tool.poetry.scripts]
cleantoots = 'cleantoots.main:cli'
2021-12-19 14:21:43 +01:00
[tool.black]
2021-12-19 14:56:47 +01:00
target-version = ['py38']
2021-12-19 14:21:43 +01:00
[tool.isort]
profile = "black"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py38, py39, py310
[testenv]
whitelist_externals = poetry
commands =
poetry install --remove-untracked
poetry run inv test
"""
[build-system]
2021-12-19 14:21:43 +01:00
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"