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

Switch to unified view

a b/.gitignore
1
### JupyterNotebooks template
2
# gitignore template for Jupyter Notebooks
3
# website: http://jupyter.org/
4
5
.ipynb_checkpoints
6
*/.ipynb_checkpoints/*
7
8
# IPython
9
profile_default/
10
ipython_config.py
11
12
# Remove previous ipynb_checkpoints
13
#   git rm -r .ipynb_checkpoints/
14
15
### macOS template
16
# General
17
.DS_Store
18
.AppleDouble
19
.LSOverride
20
21
# Icon must end with two \r
22
Icon
23
24
# Thumbnails
25
._*
26
27
# Files that might appear in the root of a volume
28
.DocumentRevisions-V100
29
.fseventsd
30
.Spotlight-V100
31
.TemporaryItems
32
.Trashes
33
.VolumeIcon.icns
34
.com.apple.timemachine.donotpresent
35
36
# Directories potentially created on remote AFP share
37
.AppleDB
38
.AppleDesktop
39
Network Trash Folder
40
Temporary Items
41
.apdisk
42
43
### Python template
44
# Byte-compiled / optimized / DLL files
45
__pycache__/
46
*.py[cod]
47
*$py.class
48
49
# C extensions
50
*.so
51
52
# Distribution / packaging
53
.Python
54
build/
55
develop-eggs/
56
dist/
57
downloads/
58
eggs/
59
.eggs/
60
lib/
61
lib64/
62
parts/
63
sdist/
64
var/
65
wheels/
66
share/python-wheels/
67
*.egg-info/
68
.installed.cfg
69
*.egg
70
MANIFEST
71
72
# PyInstaller
73
#  Usually these files are written by a python script from a template
74
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
75
*.manifest
76
*.spec
77
78
# Installer logs
79
pip-log.txt
80
pip-delete-this-directory.txt
81
82
# Unit test / coverage reports
83
htmlcov/
84
.tox/
85
.nox/
86
.coverage
87
.coverage.*
88
.cache
89
nosetests.xml
90
coverage.xml
91
*.cover
92
*.py,cover
93
.hypothesis/
94
.pytest_cache/
95
cover/
96
97
# Translations
98
*.mo
99
*.pot
100
101
# Django stuff:
102
*.log
103
local_settings.py
104
db.sqlite3
105
db.sqlite3-journal
106
107
# Flask stuff:
108
instance/
109
.webassets-cache
110
111
# Scrapy stuff:
112
.scrapy
113
114
# Sphinx documentation
115
docs/_build/
116
117
# PyBuilder
118
.pybuilder/
119
target/
120
121
# Jupyter Notebook
122
123
# IPython
124
125
# pyenv
126
#   For a library or package, you might want to ignore these files since the code is
127
#   intended to run in multiple environments; otherwise, check them in:
128
# .python-version
129
130
# pipenv
131
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
132
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
133
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
134
#   install all needed dependencies.
135
#Pipfile.lock
136
137
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
138
__pypackages__/
139
140
# Celery stuff
141
celerybeat-schedule
142
celerybeat.pid
143
144
# SageMath parsed files
145
*.sage.py
146
147
# Environments
148
.env
149
.venv
150
env/
151
venv/
152
ENV/
153
env.bak/
154
venv.bak/
155
156
# Spyder project settings
157
.spyderproject
158
.spyproject
159
160
# Rope project settings
161
.ropeproject
162
163
# mkdocs documentation
164
/site
165
166
# mypy
167
.mypy_cache/
168
.dmypy.json
169
dmypy.json
170
171
# Pyre type checker
172
.pyre/
173
174
# pytype static type analyzer
175
.pytype/
176
177
# Cython debug symbols
178
cython_debug/
179