├── .github.setup.py ├── .github ├── dependabot.yml └── workflows │ └── autobuild.yml ├── .gitignore ├── Imath.py ├── LICENSE ├── OpenEXR.cpp ├── PKG-INFO ├── README.md └── setup.py /.github.setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/.github.setup.py -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/.github/workflows/autobuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/.gitignore -------------------------------------------------------------------------------- /Imath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/Imath.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenEXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/OpenEXR.cpp -------------------------------------------------------------------------------- /PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/PKG-INFO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanguinariojoe/pip-openexr/HEAD/setup.py --------------------------------------------------------------------------------