/ duper-python / .gitignore
.gitignore
 1  /target
 2  
 3  # Byte-compiled / optimized / DLL files
 4  __pycache__/
 5  .pytest_cache/
 6  *.py[cod]
 7  
 8  # C extensions
 9  *.so
10  
11  # Distribution / packaging
12  .Python
13  .venv/
14  env/
15  bin/
16  build/
17  develop-eggs/
18  dist/
19  eggs/
20  lib/
21  lib64/
22  parts/
23  sdist/
24  var/
25  include/
26  man/
27  venv/
28  *.egg-info/
29  .installed.cfg
30  *.egg
31  
32  # Installer logs
33  pip-log.txt
34  pip-delete-this-directory.txt
35  pip-selfcheck.json
36  
37  # Unit test / coverage reports
38  htmlcov/
39  .tox/
40  .coverage
41  .cache
42  nosetests.xml
43  coverage.xml
44  
45  # Translations
46  *.mo
47  
48  # Mr Developer
49  .mr.developer.cfg
50  .project
51  .pydevproject
52  
53  # Rope
54  .ropeproject
55  
56  # Django stuff:
57  *.log
58  *.pot
59  
60  .DS_Store
61  
62  # Sphinx documentation
63  docs/_build/
64  
65  # PyCharm
66  .idea/
67  
68  # VSCode
69  .vscode/
70  
71  # Pyenv
72  .python-version
73  
74  /debug.py