Add README and initial setup.cfg

pull/1/head
Andrew Godwin 2022-11-05 14:22:36 -06:00
rodzic d77dcf62b4
commit 57e33f1215
2 zmienionych plików z 34 dodań i 0 usunięć

8
README.md 100644
Wyświetl plik

@ -0,0 +1,8 @@
# takahē
A *very experimental* Fediverse server for microblogging/"toots".
Goals:
* Can run on serverless hosting
* Multiple account domains possible per server

26
setup.cfg 100644
Wyświetl plik

@ -0,0 +1,26 @@
[flake8]
exclude = venv/*,tox/*,specs/*
ignore = E123,E128,E203,E266,E402,F405,E501,W503,E731,W601
max-line-length = 119
[isort]
profile = black
multi_line_output = 3
[mypy]
warn_unused_ignores = True
[mypy-django.*]
ignore_missing_imports = True
[mypy-urlman.*]
ignore_missing_imports = True
[mypy-crispy_forms.*]
ignore_missing_imports = True
[mypy-cryptography.*]
ignore_missing_imports = True
[mypy-*.migrations.*]
ignore_errors = True