├── .codecov.yml ├── .github └── workflows │ └── test_and_deploy.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── brainglobe_space ├── __init__.py ├── core.py ├── functions.py └── utils.py ├── docs └── img │ └── projections.png ├── pyproject.toml └── tests ├── __init__.py ├── test_core.py ├── test_functions.py └── utils.py /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /.github/workflows/test_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/.github/workflows/test_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/README.md -------------------------------------------------------------------------------- /brainglobe_space/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/brainglobe_space/__init__.py -------------------------------------------------------------------------------- /brainglobe_space/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/brainglobe_space/core.py -------------------------------------------------------------------------------- /brainglobe_space/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/brainglobe_space/functions.py -------------------------------------------------------------------------------- /brainglobe_space/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/brainglobe_space/utils.py -------------------------------------------------------------------------------- /docs/img/projections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/docs/img/projections.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brainglobe/brainglobe-space/HEAD/tests/utils.py --------------------------------------------------------------------------------