├── .gitignore ├── .travis.yml ├── README.md ├── musichaos ├── __init__.py ├── __main__.py ├── core.py ├── errors.py └── helpers.py ├── requirements.txt ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/README.md -------------------------------------------------------------------------------- /musichaos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/musichaos/__init__.py -------------------------------------------------------------------------------- /musichaos/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/musichaos/__main__.py -------------------------------------------------------------------------------- /musichaos/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/musichaos/core.py -------------------------------------------------------------------------------- /musichaos/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/musichaos/errors.py -------------------------------------------------------------------------------- /musichaos/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/musichaos/helpers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click==6.2 2 | mutagen==1.31 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timofurrer/musichaos/HEAD/tox.ini --------------------------------------------------------------------------------