[metadata] name = backend url = https://relay.md description = backend description_file = README.md author = Fabian Schuh author_email = fabian@relay.md maintainer = relay.md maintainer_email = fabian@relay.md keywords = # See https://pypi.org/classifiers/ classifiers = Development Status :: 5 - Production/Stable Environment :: Console Intended Audience :: Developers Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3.8 Topic :: Software Development :: Testing Topic :: Software Development :: Version Control :: Git [options] python_requires = >= 3.8 packages = find: setup_requires = pytest-runner [aliases] test=pytest [coverage:run] source=backend/ omit= tests/* .tox/* .eggs/* [coverage:report] include=backend/* ignore_errors=True show_missing=True [flake8] #select = C,E,F,W,B,B950 ignore = E501,W503 exclude = # No need to traverse our git directory .git, # There's no value in checking cache directories __pycache__, # The conf file is mostly autogenerated, ignore it docs/conf.py, max-line-length = 90 per-file-ignores = # need to patch config before importing other stuff that load config already tests/conftest.py:E402 [mypy] ignore_missing_imports = True exclude = env tests alembic [pycodestyle] count = False ignore = E501 max-line-length = 160 statistics = True