Skip to content

Commit 96ba258

Browse files
nipreps-botoesteban
authored andcommittedDec 19, 2024··
maint: first codebase add
0 parents  commit 96ba258

File tree

102 files changed

+12557
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+12557
-0
lines changed
 

‎.dockerignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# python cache
2+
__pycache__/**/*
3+
__pycache__
4+
*.pyc
5+
6+
# python distribution
7+
build/**/*
8+
build
9+
dist/**/*
10+
dist
11+
src/eddymotion.egg-info/**/*
12+
src/eddymotion.egg-info
13+
.eggs/**/*
14+
.eggs
15+
16+
# housekeeping tools
17+
.maint/**/*
18+
.maint
19+
20+
# pip installs
21+
src/**/*
22+
src/
23+
24+
# git
25+
.git_archival.txt
26+
.gitattributes
27+
.gitignore
28+
.git/**/*
29+
.git
30+
.mailmap
31+
32+
# other
33+
work/**/*
34+
work
35+
out/**/*
36+
out/
37+
.idea/**/*
38+
.idea
39+
40+
# CI, etc.
41+
tox.ini
42+
.circleci
43+
.circleci/**/*
44+
.github
45+
.github/**/*
46+
.pytest_cache
47+
.pytest_cache/**/*
48+
.codecov.yml
49+
.coveragerc
50+
.pep8speaks.yml
51+
.pre-commit-config.yaml
52+
.readthedocs.yml
53+
.travis.yml
54+
.zenodo.json
55+
56+
.afq

‎.git_archival.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ref-names: $Format:%D$

0 commit comments

Comments
 (0)
Please sign in to comment.