├── .gitattributes ├── .github └── workflows │ ├── docs.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── _static │ └── theme_override.css ├── _templates │ ├── class.rst │ └── function.rst ├── api.rst ├── conf.py ├── index.rst └── requirements.txt ├── phyid ├── __init__.py ├── _version.py ├── calculate.py ├── measures.py ├── tests │ ├── __init__.py │ ├── test_calculate.py │ ├── test_measures.py │ └── test_utils.py └── utils.py ├── pyproject.toml ├── setup.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | phyid/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/theme_override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/_static/theme_override.css -------------------------------------------------------------------------------- /docs/_templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/_templates/class.rst -------------------------------------------------------------------------------- /docs/_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/_templates/function.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /phyid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/phyid/__init__.py -------------------------------------------------------------------------------- /phyid/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/phyid/_version.py -------------------------------------------------------------------------------- /phyid/calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/phyid/calculate.py -------------------------------------------------------------------------------- /phyid/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/phyid/measures.py -------------------------------------------------------------------------------- /phyid/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phyid/tests/test_calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/phyid/tests/test_calculate.py -------------------------------------------------------------------------------- /phyid/tests/test_measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/phyid/tests/test_measures.py -------------------------------------------------------------------------------- /phyid/tests/test_utils.py: -------------------------------------------------------------------------------- 1 | """For testing utils.py file.""" -------------------------------------------------------------------------------- /phyid/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/phyid/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imperial-MIND-lab/integrated-info-decomp/HEAD/versioneer.py --------------------------------------------------------------------------------