├── CHANGELOG.md ├── LICENSE ├── README.md ├── animate └── requirements.txt /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.0.1 4 | 5 | Initial release 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/animate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/animate/HEAD/README.md -------------------------------------------------------------------------------- /animate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/animate/HEAD/animate -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | replicate==0.22.0 2 | --------------------------------------------------------------------------------