Diff of /.gitignore [000000] .. [5d12a0]

Switch to unified view

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