├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── pyutau ├── __init__.py └── pyutau.py ├── setup.cfg └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UtaUtaUtau/pyUtau/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UtaUtaUtau/pyUtau/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UtaUtaUtau/pyUtau/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UtaUtaUtau/pyUtau/HEAD/README.md -------------------------------------------------------------------------------- /pyutau/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UtaUtaUtau/pyUtau/HEAD/pyutau/__init__.py -------------------------------------------------------------------------------- /pyutau/pyutau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UtaUtaUtau/pyUtau/HEAD/pyutau/pyutau.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UtaUtaUtau/pyUtau/HEAD/setup.py --------------------------------------------------------------------------------