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`
16 lines
330 B
TOML
16 lines
330 B
TOML
[build-system]
|
|
requires = ["setuptools","wheel"]
|
|
build-backend = 'setuptools.build_meta'
|
|
|
|
|
|
[tool.mypy]
|
|
show_traceback = true
|
|
install_types = true
|
|
pretty = true
|
|
disallow_untyped_decorators = true
|
|
warn_redundant_casts = true
|
|
warn_unreachable = true
|
|
warn_unused_ignores = true
|
|
ignore_missing_imports = true
|
|
follow_imports = "silent"
|