setup.cfg 508 B

123456789101112131415161718192021222324252627
  1. [tool:pytest]
  2. testpaths = t/unit/
  3. python_classes = test_*
  4. [build_sphinx]
  5. source-dir = docs/
  6. build-dir = docs/_build
  7. all_files = 1
  8. [flake8]
  9. # classes can be lowercase, arguments and variables can be uppercase
  10. # whenever it makes the code more readable.
  11. ignore = N806, N802, N801, N803, E741, E742, E722
  12. [pep257]
  13. ignore = D102,D104,D203,D105,D213
  14. [bdist_rpm]
  15. requires = pytz >= 2016.7
  16. billiard >= 3.5.0.2
  17. kombu >= 4.0.2
  18. [bdist_wheel]
  19. universal = 1
  20. [metadata]
  21. license_file = LICENSE