aa98de9b6c
The script scans the given directories for media files with known file name extensions and writes the names into a playlist file in M3U, extended M3U or PLS format. Those very simple formats are used or at least understood by the vast majority of media players on different platforms. For huge collections which have to be rescanned after adding or modifying some files, the program can cache the meta data to speed up subsequent runs. from maintainer Girish Venkatachalam, reworked to use python.port.mk and setuptools by wcmaier@
16 lines
443 B
Python
16 lines
443 B
Python
# $OpenBSD: setup.py,v 1.1.1.1 2008/06/04 07:33:20 sthen Exp $
|
|
|
|
from distutils.core import setup
|
|
import sys, os
|
|
|
|
setup(
|
|
name = "mkplaylist.py",
|
|
version = "0.4.5",
|
|
description = "creates playlists from directory trees",
|
|
author = "Marc 'BlackJack' Rintsch",
|
|
author_email = "marc@rintsch.de",
|
|
license = "GPL",
|
|
url = "http://bj.spline.de/software.html",
|
|
scripts = ('mkplaylist',),
|
|
)
|