Diff of /.gitignore [000000] .. [cad161]

Switch to unified view

a b/.gitignore
1
# Python
2
__pycache__/
3
4
# Distribution / packaging
5
init
6
.Python
7
env/
8
venv/
9
build/
10
develop-eggs/
11
dist/
12
downloads/
13
eggs/
14
.eggs/
15
lib/
16
lib64/
17
parts/
18
sdist/
19
var/
20
site/
21
*.egg-info/
22
.installed.cfg
23
*.egg
24
*.cpp
25
*.so
26
*.c
27
public/
28
29
# Unit test / coverage reports
30
htmlcov/
31
.tox/
32
.coverage
33
.coverage.*
34
.cache
35
nosetests.xml
36
coverage.xml
37
*,cover
38
.hypothesis/
39
.pytest_cache/
40
41
# Documentation
42
_build/
43
44
# Notebooks
45
.ipynb_checkpoints/
46
*.ipynb
47
48
# Data
49
*.csv
50
*.pickle
51
*.txt
52
*.xls
53
*.xlsx
54
*.tar.gz
55
*.tsv
56
*.ann
57
58
# Editors
59
.idea
60
.vscode
61
62
# Files
63
.DS_Store
64
65
# Environment
66
.venv
67
68
# Test resources
69
!tests/resources/**/*
70
71
# Generated docs
72
docs/reference
73
docs/changelog.md
74
docs/contributing.md
75
.vercel