Diff of /.gitignore [000000] .. [7fc5df]

Switch to unified view

a b/.gitignore
1
output/
2
3
# Created by https://www.gitignore.io/api/python,virtualenv
4
# Edit at https://www.gitignore.io/?templates=python,virtualenv
5
6
### Python ###
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
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
.hypothesis/
57
.pytest_cache/
58
59
# Translations
60
*.mo
61
*.pot
62
63
# Scrapy stuff:
64
.scrapy
65
66
# Sphinx documentation
67
docs/_build/
68
69
# PyBuilder
70
target/
71
72
# pyenv
73
.python-version
74
75
# pipenv
76
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
77
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
78
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
79
#   install all needed dependencies.
80
#Pipfile.lock
81
82
# celery beat schedule file
83
celerybeat-schedule
84
85
# SageMath parsed files
86
*.sage.py
87
88
# Spyder project settings
89
.spyderproject
90
.spyproject
91
92
# Rope project settings
93
.ropeproject
94
95
# Mr Developer
96
.mr.developer.cfg
97
.project
98
.pydevproject
99
100
# mkdocs documentation
101
/site
102
103
# mypy
104
.mypy_cache/
105
.dmypy.json
106
dmypy.json
107
108
# Pyre type checker
109
.pyre/
110
111
### VirtualEnv ###
112
# Virtualenv
113
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
114
pyvenv.cfg
115
.env
116
.venv
117
env/
118
venv/
119
ENV/
120
env.bak/
121
venv.bak/
122
pip-selfcheck.json
123
124
# End of https://www.gitignore.io/api/python,virtualenv