summaryrefslogtreecommitdiff
path: root/.gitignore
blob: a49767e77493448701ef91f1e11072266c95f953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Files that can appear anywhere in the tree.
*.pyc
*.pyo
*$py.class
*.pyd
*.so
*.bak
.coverage
.coverage.*
coverage.xml
coverage.json
.metacov
.metacov.*
*.swp

# Stuff generated by editors.
.idea/
.vscode/
.vimtags

# Stuff in the root.
build
*.egg-info
cheats.txt
dist
htmlcov
MANIFEST
setuptools-*.egg
.tox
.noseids
.cache
.pytest_cache
.hypothesis
.ruby-version
.venv

# Stuff in the test directory.
covmain.zip
zipmods.zip
zip1.zip
tests/actual

# Stuff in the doc directory.
doc/_build
doc/_spell
doc/sample_html_beta

# Build intermediaries.
tmp

# OS junk
.DS_Store

!.github