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