setup.cfg 409 B

123456789101112131415161718192021
  1. [nosetests]
  2. with-doctest=1
  3. with-xunit=1
  4. cover-package=gbp
  5. cover-erase=1
  6. exe=1
  7. [epydoc]
  8. name = git-buildpackage
  9. sourcecode = no
  10. url = https://honk.sigxcpu.org/piki/projects/git-buildpackage/
  11. target = build/apidocs/
  12. fail-on = docstring_warning
  13. modules = gbp, tests/test_*.py
  14. [flake8]
  15. # E501: ignore line length
  16. # E265: block comment should start with '# '
  17. ignore=E501,E265
  18. builtins=unicode,execfile,raw_input