mastodon_email_bridge/pyproject.toml

28 lines
742 B
TOML
Raw Permalink Normal View History

2024-08-02 17:06:21 +02:00
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
2024-08-02 19:07:20 +02:00
Homepage = "https://codeberg.org/adelgado/mastodon_email_bridge"
2024-08-02 17:06:21 +02:00
[project]
name = "mastodon_email_bridge"
2024-09-20 10:08:51 +02:00
version = "1.0.1"
2024-08-02 19:07:20 +02:00
description = "Redirect your Mastodon Home timeline to your email"
2024-08-02 17:06:21 +02:00
readme = "README.md"
authors = [{ name = "Antonio J. Delgado", email = "ad@susurrando.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GPLv3 License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
2024-08-02 19:07:20 +02:00
keywords = ["Mastodon", "email", "fediverse", "ActivityPub"]
2024-08-02 17:06:21 +02:00
dependencies = [
"click",
"click_config_file",
2024-08-02 19:07:20 +02:00
"requests",
"jinja2",
2024-08-02 17:06:21 +02:00
]
2024-08-02 19:07:20 +02:00
requires-python = ">=3"