forked from nipreps/mriqc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.dockerignore
58 lines (54 loc) · 851 Bytes
/
.dockerignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# python cache
.cache/
__pycache__/**/*
__pycache__
*.pyc
# python distribution
build/**/*
build
dist/**/*
dist
mriqc.egg-info/**/*
mriqc.egg-info
.eggs/**/*
.eggs
src/**/*
src/
notebooks/
.maint/
.maint/**/*
# releasing
Makefile
###
### git MUST NOT be ignored after moving to multi-staged builds
###
### with the multi-staged build, the strategy is to create a wheel
### in a stage image. To create such a wheel, the git repo is necessary
### for hatch-vcs to interpolate the version and initialize _version.py
###
# .github/
# .gitignore
# .gitattributes
# .git/**/*
# .git
# Maintenance
.circleci/
.maint/
.codecov.yml
.coveragerc
.pep8speaks.yml
.pylintrc
.readthedocs.yaml
.travis.yml
.zenodo.json
CONTRIBUTING.md
codecov.yml
docs
docs/**/*
long_description.rst
notebooks
notebooks/**/*
requirements-dev.txt
requirements.txt
venv/
venv/**/*