2021-10-14 19:20:53 +00:00
|
|
|
[metadata]
|
|
|
|
name = relay
|
2022-12-08 09:17:17 +00:00
|
|
|
version = 0.2.4
|
2021-10-14 19:20:53 +00:00
|
|
|
description = Generic LitePub relay (works with all LitePub consumers and Mastodon)
|
|
|
|
long_description = file: README.md
|
|
|
|
long_description_content_type = text/markdown; charset=UTF-8
|
|
|
|
url = https://git.pleroma.social/pleroma/relay
|
|
|
|
license = AGPLv3
|
|
|
|
license_file = LICENSE
|
|
|
|
classifiers =
|
|
|
|
Environment :: Console
|
|
|
|
License :: OSI Approved :: AGPLv3 License
|
|
|
|
Programming Language :: Python :: 3.6
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
Programming Language :: Python :: 3.9
|
|
|
|
Programming Language :: Python :: 3.10
|
|
|
|
project_urls =
|
|
|
|
Source = https://git.pleroma.social/pleroma/relay
|
|
|
|
Tracker = https://git.pleroma.social/pleroma/relay/-/issues
|
|
|
|
|
|
|
|
[options]
|
|
|
|
zip_safe = False
|
|
|
|
packages = find:
|
|
|
|
install_requires =
|
2022-05-06 07:04:51 +00:00
|
|
|
aiohttp >= 3.8.0
|
|
|
|
cachetools >= 5.0.0
|
|
|
|
click >= 8.1.2
|
|
|
|
pycryptodome >= 3.14.1
|
|
|
|
PyYAML >= 5.0.0
|
2022-12-08 04:23:13 +00:00
|
|
|
aputils @ git+https://git.barkshark.xyz/barkshark/aputils@2cd1776f12
|
2021-10-14 19:20:53 +00:00
|
|
|
python_requires = >=3.6
|
2022-05-06 07:04:51 +00:00
|
|
|
|
2022-11-16 16:18:31 +00:00
|
|
|
[options.extras_require]
|
|
|
|
dev =
|
|
|
|
pyinstaller >= 5.6.0
|
|
|
|
|
2022-05-06 07:04:51 +00:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
activityrelay = relay.manage:main
|
|
|
|
|