https://github.com/poldracklab/mriqc
Raw File
Tip revision: 08aa45502afefafab0a03407ff4ba231fe9dc6ad authored by Oscar Esteban on 05 April 2024, 09:06:34 UTC
rel(24.0.0-rc1): Update authorship in CHANGES [skip ci]
Tip revision: 08aa455
.dockerignore
# 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/**/*
back to top