• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Temporary and binary files
2*~
3*.py[cod]
4*.so
5*.cfg
6!.isort.cfg
7!setup.cfg
8*.orig
9*.log
10*.pot
11__pycache__/*
12.cache/*
13.*.swp
14*/.ipynb_checkpoints/*
15.DS_Store
16
17
18# Ignore pb2 files
19**/*_pb2.py
20**/*_pb2_grpc.py
21
22# Project files
23.ropeproject
24.project
25.pydevproject
26.settings
27.idea
28.vscode
29tags
30
31# Package files
32*.egg
33*.eggs/
34.installed.cfg
35*.egg-info
36*.whl
37
38# Unittest and coverage
39htmlcov/*
40.coverage
41.coverage.*
42.tox
43junit*.xml
44coverage.xml
45.pytest_cache/
46
47# Build and docs folder/files
48build/*
49dist/*
50sdist/*
51docs/api/*
52docs/_rst/*
53docs/_build/*
54cover/*
55MANIFEST
56
57# Per-project virtualenvs
58venv
59.venv*/
60.conda*/
61.python-version
62