Install
=========
-To install the DeeFuzzer, go to the main deefuzzer app directory, for example::
+Please first install libshout3 and liblo from source OR libshout3-dev and liblo-dev from your own distribution package manager.
+
+Now, the easiest way to install the DeeFuzzer from a shell::
+
+ sudo pip install deefuzzer
+
+or::
+
+ sudo easy_install install deefuzzer
+
+To install the DeeFuzzer from sources, go to the main deefuzzer app directory, for example::
cd deefuzzer-0.5.0
-and run the python installer::
+and run::
- sudo python install.py
+ sudo python setup.py install
For more informations, see http://svn.parisson.org/deefuzzer/
Installation
============
-see INSTALL
+Please first install libshout3 and liblo from source OR libshout3-dev and liblo-dev from your own distribution package manager.
+
+Now, the easiest way to install the DeeFuzzer from a shell::
+
+ sudo pip install deefuzzer
+
+or::
+
+ sudo easy_install deefuzzer
+
+To install the DeeFuzzer from sources, go to the main deefuzzer app directory, for example::
+
+ cd deefuzzer-0.5.0
+
+and run::
+
+ sudo python setup.py install
+
+For more informations, see http://svn.parisson.org/deefuzzer/
License
'''The setup and build script for the python-twitter library.'''
import os
-from distutils.core import setup
-from deefuzzer import __version__
+__version__ = '0.6'
__author__ = 'yomguy@parisson.com'
# The base package metadata to be used by both distutils and setuptools
description='an easy and instant media streaming tool',
author='Guillaume Pellerin',
author_email='yomguy@parisson.com',
- license='License.txt',
+ license='CeCILL',
url='http://svn.parisson.org/deefuzzer',
keywords='audio video streaming broadcast shout',
- install_requires = ['setuptools', 'tinyurl', 'python-shout', 'python-twitter'],
+ install_requires = ['setuptools', 'tinyurl', 'python-shout', 'python-twitter', 'mutagen', 'pyliblo'],
packages=['deefuzzer', 'deefuzzer.tools'],
include_package_data = True,
scripts=['scripts/deefuzzer'],