├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── README.md ├── maintainer-notes.md ├── meson.build ├── pyproject.toml ├── src └── pymmcore │ ├── __init__.py │ ├── __init__.pyi │ ├── _version.py.in │ ├── meson.build │ ├── py.typed │ └── pymmcore_swig.i ├── subprojects ├── .gitignore ├── mmcore.wrap └── mmdevice.wrap └── tests └── test_mmcore.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/README.md -------------------------------------------------------------------------------- /maintainer-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/maintainer-notes.md -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/meson.build -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pymmcore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/src/pymmcore/__init__.py -------------------------------------------------------------------------------- /src/pymmcore/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/src/pymmcore/__init__.pyi -------------------------------------------------------------------------------- /src/pymmcore/_version.py.in: -------------------------------------------------------------------------------- 1 | __version__ = "@VERSION@" 2 | -------------------------------------------------------------------------------- /src/pymmcore/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/src/pymmcore/meson.build -------------------------------------------------------------------------------- /src/pymmcore/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pymmcore/pymmcore_swig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/src/pymmcore/pymmcore_swig.i -------------------------------------------------------------------------------- /subprojects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/subprojects/.gitignore -------------------------------------------------------------------------------- /subprojects/mmcore.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/subprojects/mmcore.wrap -------------------------------------------------------------------------------- /subprojects/mmdevice.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/subprojects/mmdevice.wrap -------------------------------------------------------------------------------- /tests/test_mmcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micro-manager/pymmcore/HEAD/tests/test_mmcore.py --------------------------------------------------------------------------------