setup.cfg 550 B

1234567891011121314151617181920212223
  1. [bdist_wheel]
  2. # This flag says that the code is written to work on both Python 2 and Python
  3. # 3. If at all possible, it is good practice to do this. If you cannot, you
  4. # will need to generate wheels for each Python version that you support.
  5. universal=1
  6. [nosetests]
  7. verbosity=2
  8. with-coverage=1
  9. cover-html=1
  10. cover-inclusive=1
  11. cover-min-percentage=70
  12. cover-erase=1
  13. detailed-errors=1
  14. cover-branches=1
  15. [flake8]
  16. max-line-length=120
  17. exclude=test/*,setup.py,oo-installenv
  18. ignore=E501
  19. [lint]
  20. lint_disable=fixme,locally-disabled,file-ignored,duplicate-code