setup.cfg 374 B

123456789101112131415161718192021
  1. [build_sphinx]
  2. source-dir = docs/sphinx
  3. build-dir = docs/build
  4. all_files = 1
  5. [trial]
  6. test_suite = tests
  7. [check-manifest]
  8. ignore =
  9. contrib
  10. contrib/*
  11. docs/*
  12. pylint.cfg
  13. tox.ini
  14. [flake8]
  15. max-line-length = 90
  16. # W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
  17. # E203 is contrary to PEP8.
  18. ignore = W503,E203