├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── live.yml ├── marc-build.sh ├── nuke.sh └── push.sh /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/README.md -------------------------------------------------------------------------------- /live.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/live.yml -------------------------------------------------------------------------------- /marc-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/marc-build.sh -------------------------------------------------------------------------------- /nuke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/nuke.sh -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-usd/HEAD/push.sh --------------------------------------------------------------------------------