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

Switch to unified view

a b/.gitignore
1
# Custom output files
2
data/
3
scripts/
4
checkpoint*/
5
*.out
6
7
# Byte-compiled / optimized / DLL files
8
**/__pycache__/
9
**/*.py[cod]
10
**/*$py.class
11
12
# C extensions
13
*.so
14
15
# Distribution / packaging
16
.Python
17
build/
18
develop-eggs/
19
dist/
20
downloads/
21
eggs/
22
.eggs/
23
lib/
24
lib64/
25
parts/
26
sdist/
27
var/
28
wheels/
29
*.egg-info/
30
.installed.cfg
31
*.egg
32
MANIFEST
33
34
# PyInstaller
35
#  Usually these files are written by a python script from a template
36
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
37
*.manifest
38
*.spec
39
40
# Installer logs
41
pip-log.txt
42
pip-delete-this-directory.txt
43
44
# Unit test / coverage reports
45
htmlcov/
46
.tox/
47
.coverage
48
.coverage.*
49
.cache
50
nosetests.xml
51
coverage.xml
52
*.cover
53
.hypothesis/
54
.pytest_cache/
55
56
# Translations
57
*.mo
58
*.pot
59
60
# Django stuff:
61
*.log
62
local_settings.py
63
db.sqlite3
64
65
# Flask stuff:
66
instance/
67
.webassets-cache
68
69
# Scrapy stuff:
70
.scrapy
71
72
# Sphinx documentation
73
docs/_build/
74
75
# PyBuilder
76
target/
77
78
# Jupyter Notebook
79
.ipynb_checkpoints
80
81
# pyenv
82
.python-version
83
84
# celery beat schedule file
85
celerybeat-schedule
86
87
# SageMath parsed files
88
*.sage.py
89
90
# Environments
91
.env
92
.venv
93
env/
94
venv/
95
ENV/
96
env.bak/
97
venv.bak/
98
99
# Spyder project settings
100
.spyderproject
101
.spyproject
102
103
# Rope project settings
104
.ropeproject
105
106
# mkdocs documentation
107
/site
108
109
# mypy
110
.mypy_cache/