.gitignore 433 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Build artifacts
  2. *.py[cod]
  3. __pycache__
  4. *.egg-info/
  5. build/
  6. dist/
  7. # Documentation-related
  8. docs/_build
  9. # Test files
  10. .nox/
  11. .tox/
  12. .cache/
  13. # Django test database
  14. db.sqlite3
  15. # Coverage files
  16. .coverage
  17. coverage.xml
  18. nosetests.xml
  19. htmlcov/
  20. # Files with private / local data
  21. scripts/local_test_setup
  22. tests/data/key.json
  23. tests/data/key.p12
  24. tests/data/user-key.json
  25. # PyCharm configuration:
  26. .idea
  27. # Generated files
  28. pylintrc
  29. pylintrc.test