/ Python / experiments / typexps / .gitignore
.gitignore
 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  # Project files
18  .ropeproject
19  .project
20  .pydevproject
21  .settings
22  .idea
23  .vscode
24  tags
25  
26  # Package files
27  *.egg
28  *.eggs/
29  .installed.cfg
30  *.egg-info
31  
32  # Unittest and coverage
33  htmlcov/*
34  .coverage
35  .coverage.*
36  .tox
37  junit*.xml
38  coverage.xml
39  .pytest_cache/
40  
41  # Build and docs folder/files
42  build/*
43  dist/*
44  sdist/*
45  docs/api/*
46  docs/_rst/*
47  docs/_build/*
48  cover/*
49  MANIFEST
50  
51  # Per-project virtualenvs
52  .venv*/
53  .conda*/
54  .python-version