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

Switch to unified view

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