mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
--HG-- rename : bts.py => bts rename : test/alltests.py => test/testall.py extra : convert_revision : svn%3A41726ec3-264d-0410-9c23-a9f1637257cc/trunk%40130
29 lines
842 B
Python
Executable file
29 lines
842 B
Python
Executable file
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
|
|
setup(name='beets',
|
|
version='0.1',
|
|
description='music library manager',
|
|
author='Adrian Sampson',
|
|
author_email='adrian@radbox.org',
|
|
url='http://code.google.com/p/beets/',
|
|
license='GPL',
|
|
platforms='ALL',
|
|
long_description="""Beets is a system for managing your music
|
|
collection.
|
|
|
|
It catalogs a collection in a sqlite database. This allows batch
|
|
correction of file tags and reorganization into a custom
|
|
directory structure.
|
|
|
|
It also includes a music player that reimplements the
|
|
`MPD <http://musicpd.org/>`_ protocol in order to play music from
|
|
the database.
|
|
""",
|
|
|
|
packages=['beets'],
|
|
scripts=['bts'],
|
|
|
|
requires=['sqlite3', 'mutagen', 'eventlet (>=0.8)'],
|
|
)
|
|
|