├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── beetsplug ├── __init__.py └── popularity.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abba23/beets-popularity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abba23/beets-popularity/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abba23/beets-popularity/HEAD/README.md -------------------------------------------------------------------------------- /beetsplug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abba23/beets-popularity/HEAD/beetsplug/__init__.py -------------------------------------------------------------------------------- /beetsplug/popularity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abba23/beets-popularity/HEAD/beetsplug/popularity.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abba23/beets-popularity/HEAD/setup.py --------------------------------------------------------------------------------