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

Switch to unified view

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