.gitignore 152 B

1234567891011121314151617
  1. # Editor artifacts.
  2. *~
  3. # Development artifacts.
  4. TAGS
  5. # Build artifacts.
  6. *.py[cod]
  7. build/
  8. dist/
  9. *.egg-info
  10. # Test artifacts.
  11. .coverage
  12. htmlcov/
  13. .tox/