Diff of /.gitignore [000000] .. [094e4c]

Switch to unified view

a b/.gitignore
1
# Byte-compiled / optimized / DLL files
2
__pycache__/
3
models/
4
output*/
5
sample/
6
csv/
7
*.py[cod]
8
*$py.class
9
.ipynb_checkpoints/
10
# C extensions
11
#*.so
12
13
# Distribution / packaging
14
.Python
15
ignore/
16
build/
17
18
develop-eggs/
19
dist/
20
downloads/
21
eggs/
22
.eggs/
23
lib/
24
lib64/
25
parts/
26
sdist/
27
var/
28
wheels/
29
pip-wheel-metadata/
30
share/python-wheels/
31
*.egg-info/
32
.installed.cfg
33
*.egg
34
MANIFEST
35
36
# PyInstaller
37
#  Usually these files are written by a python script from a template
38
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
39
*.manifest
40
*.spec
41
42
# Installer logs
43
pip-log.txt
44
pip-delete-this-directory.txt
45
46
# Unit test / coverage reports
47
htmlcov/
48
.tox/
49
.nox/
50
.coverage
51
.coverage.*
52
.cache
53
nosetests.xml
54
coverage.xml
55
*.cover
56
*.py,cover
57
.hypothesis/
58
.pytest_cache/
59
60
# Translations
61
*.mo
62
*.pot
63
64
# Django stuff:
65
*.log
66
local_settings.py
67
db.sqlite3
68
db.sqlite3-journal
69
70
# Flask stuff:
71
instance/
72
.webassets-cache
73
74
# Scrapy stuff:
75
.scrapy
76
77
# Sphinx documentation
78
docs/_build/
79
80
# PyBuilder
81
target/
82
83
# Jupyter Notebook
84
.ipynb_checkpoints
85
86
# IPython
87
profile_default/
88
ipython_config.py
89
90
# pyenv
91
.python-version
92
93
# pipenv
94
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
95
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
96
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
97
#   install all needed dependencies.
98
#Pipfile.lock
99
100
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
101
__pypackages__/
102
103
# Celery stuff
104
celerybeat-schedule
105
celerybeat.pid
106
107
# SageMath parsed files
108
*.sage.py
109
110
# Environments
111
.env
112
.venv
113
env/
114
venv/
115
ENV/
116
env.bak/
117
venv.bak/
118
119
# Spyder project settings
120
.spyderproject
121
.spyproject
122
123
# Rope project settings
124
.ropeproject
125
126
# mkdocs documentation
127
/site
128
129
# mypy
130
.mypy_cache/
131
.dmypy.json
132
dmypy.json
133
134
# Pyre type checker
135
.pyre/