2023-06-18 06:36:22 +02:00
|
|
|
[project]
|
2020-08-26 13:59:01 +02:00
|
|
|
name = "ephemetoot"
|
2024-05-19 04:31:06 +02:00
|
|
|
version = "3.2.1"
|
2020-08-26 13:59:01 +02:00
|
|
|
description = "A command line tool to delete your old toots"
|
2023-06-18 06:36:22 +02:00
|
|
|
requires-python = ">=3.8"
|
|
|
|
authors = [
|
|
|
|
{name = "Hugh Rundle", email = "ephemetoot@hugh.run"}
|
|
|
|
]
|
|
|
|
license = { text = "GPL-3.0-or-later"}
|
2020-08-26 13:59:01 +02:00
|
|
|
readme = "pypi-readme.md"
|
|
|
|
keywords = ["mastodon", "api", "microblogging"]
|
|
|
|
classifiers = [
|
|
|
|
"Environment :: Console",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Topic :: Communications"
|
|
|
|
]
|
2023-06-18 06:36:22 +02:00
|
|
|
dependencies = [
|
2023-06-18 10:19:00 +02:00
|
|
|
"requests>=2.31.0",
|
2024-05-19 04:31:06 +02:00
|
|
|
"mastodon.py>=1.8.1",
|
|
|
|
"pyyaml>=6.0.1"
|
2020-08-26 13:59:01 +02:00
|
|
|
]
|
|
|
|
|
2023-06-18 06:36:22 +02:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = ["pytest>=6"]
|
2020-08-26 13:59:01 +02:00
|
|
|
|
2023-06-18 06:36:22 +02:00
|
|
|
[project.scripts]
|
2020-08-26 13:59:01 +02:00
|
|
|
ephemetoot = 'ephemetoot.console:main'
|
|
|
|
|
2023-06-18 06:36:22 +02:00
|
|
|
[project.urls]
|
|
|
|
homepage = "https://ephemetoot.hugh.run"
|
|
|
|
repository = "https://github.com/hughrun/ephemetoot"
|
|
|
|
|
2020-08-26 13:59:01 +02:00
|
|
|
[build-system]
|
2024-05-19 04:31:06 +02:00
|
|
|
requires = ["setuptools>=69.0"]
|
2023-06-18 06:36:22 +02:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
2024-05-19 04:31:06 +02:00
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["src"]
|