.gitignore 403 B

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