• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Python stuff
2*.pyc
3__pycache__
4
5# vim swapfiles
6*.sw?
7
8# python packaging
9MANIFEST
10dist/
11build/
12*.egg-info/
13
14# PyCharm stuff
15.idea/
16
17# Sphinx template
18docs/source/.templates/layout.html
19
20# Eclipse stuff
21.project
22.pydevproject
23
24# Virtual envs
25venv*
26