#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
 Copyright (C) 2004 jan gerber <j@reboot.fm>

 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Library General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
'''
from distutils.core import setup
from distutils.extension import Extension
import os.path
import sys

description = """
re_codec - radio over internet
"""

classifiers="""\
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GPL
Operating System :: POSIX :: Linux
Programming Language :: Python
Topic :: Multimedia :: Sound/Audio
"""

setup(name="re_codec",
	version="0.3",
	description="re_codec - radio over internet",
	long_description=description,
	author="jan gerber",
	author_email="j@thing.net",
	url="http://recodec.reboot.fm",
	platforms="linux",
	license="GPL",
	classifiers=filter(None, classifiers.splitlines()),
	py_modules = ['re_codec'],
	scripts=["recording2archive.py","streamswitch.py","update_ical.py","ical2oggcomment.py",'statusmonitor.py'],
	data_files=[
		('/etc/init.d', ['init.d/streamswitch','init.d/ical2oggcomment']),
		('/etc/reboot.fm', ['re_codec.xml','re_codec_read_config'])
	  ]
	)
