mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-09 18:08:00 +00:00
9fe6d8ad96
* ignore test*.py files * format requirements.txt to be more readable * only show note on home page if it is set * allow flake8 to check for more than just unused imports * remove a bunch of unused methods in `compat.RelayDatabase` * turn `Config` into a dataclass * replace database config methods with `RelayData` dataclass * rename `loads` to `cls` in `HttpClient.get`
52 lines
1.3 KiB
INI
52 lines
1.3 KiB
INI
[metadata]
|
|
name = relay
|
|
version = attr: relay.__version__
|
|
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.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3.11
|
|
Programming Language :: Python :: 3.12
|
|
project_urls =
|
|
Source = https://git.pleroma.social/pleroma/relay
|
|
Tracker = https://git.pleroma.social/pleroma/relay/-/issues
|
|
|
|
[options]
|
|
zip_safe = False
|
|
packages =
|
|
relay
|
|
relay.database
|
|
relay.views
|
|
include_package_data = true
|
|
install_requires = file: requirements.txt
|
|
python_requires = >=3.8
|
|
|
|
[options.extras_require]
|
|
dev = file: dev-requirements.txt
|
|
|
|
[options.package_data]
|
|
relay =
|
|
data/*
|
|
frontend/*
|
|
frontend/page/*
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
activityrelay = relay.manage:main
|
|
|
|
|
|
[flake8]
|
|
extend-ignore = E128,E251,E261,E303,W191
|
|
max-line-length = 100
|
|
indent-size = 4
|
|
per-file-ignores =
|
|
__init__.py: F401
|