1# Build artifacts 2*.py[cod] 3__pycache__ 4*.egg-info/ 5build/ 6dist/ 7 8# Documentation-related 9docs/_build 10 11# Test files 12.nox/ 13.tox/ 14.cache/ 15.pytest_cache/ 16cert_path 17key_path 18 19# Django test database 20db.sqlite3 21 22# Coverage files 23.coverage 24coverage.xml 25*sponge_log.xml 26nosetests.xml 27htmlcov/ 28 29# Files with private / local data 30scripts/local_test_setup 31tests/data/key.json 32tests/data/key.p12 33tests/data/user-key.json 34system_tests/data/ 35 36# PyCharm configuration: 37.idea 38venv/ 39 40# Generated files 41pylintrc 42pylintrc.test 43pytype_output/ 44 45.python-version 46.DS_Store 47cert_path 48key_path