]> git.parisson.com Git - timeside.git/commitdiff
Merge branch 'release/0.4.4' into dev
authorGuillaume Pellerin <yomguy@parisson.com>
Sat, 27 Jul 2013 12:07:55 +0000 (14:07 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Sat, 27 Jul 2013 12:07:55 +0000 (14:07 +0200)
Conflicts:
README.rst
setup.py
timeside/__init__.py

1  2 
README.rst
setup.py
timeside/__init__.py

diff --cc README.rst
index c8dda7e20d018be0a16bb804e4fdc3792cb3e56d,b51dab2d95771486a487962dbe5010d5abbf5b7d..21a42b54cb698538b9a0618377b479b1afb64883
@@@ -146,14 -152,13 +152,14 @@@ Instal
  
  TimeSide needs some other python modules to run. The following methods explain how to install all dependencies on a Debian based system like Debian, Ubuntu, etc.. On Fedora and Red-Hat you might replace 'apt-get by 'yum', on Gentoo by 'emerge', or any other package manager you like::
  
-  sudo apt-get update
-  sudo apt-get install python python-pip python-setuptools python-gobject \
+  sudo apt-get update
+  sudo apt-get install python python-pip python-setuptools python-gobject \
                          python-gst0.10 gstreamer0.10-plugins-base gir1.2-gstreamer-0.10 \
                          gstreamer0.10-plugins-good gstreamer0.10-plugins-bad \
 -                        gobject-introspection
 +                        gstreamer0.10-plugins-ugly gobject-introspection python-mutagen \
 +                        python-scipy python-h5py
  
 - sudo pip install timeside
 + sudo pip install timeside
  
  To get non-free (MP3, MP4, AAC, etc) decoding and encoding features, add Debian Multimedia repository and install the modules::
  
diff --cc setup.py
index 90f0cfe2d414a36086d9abb6af4f51c783eb13f2,b46ba6f5ac037c1bf56d3181a1c84a0b00531483..007ba8a1e0add2d2fa493167d0da06ef7ed66ab0
+++ b/setup.py
@@@ -26,14 -26,12 +26,14 @@@ setup
    long_description = open('README.rst').read(),
    author = "Guillaume Pellerin, Paul Brossier, Riccardo Zaccarelli, Olivier Guilyardi",
    author_email = "yomguy@parisson.com, piem@piem.org, riccardo.zaccarelli@gmail.com, olivier@samalyse.com",
-   version = '0.5',
+   version = '0.4.4',
    install_requires = [
          'setuptools',
 -        'numpy',
 +        'numpy>=1.6.2',
          'mutagen',
          'pil',
 +        'scipy',
 +        'hf5py',
          ],
    platforms=['OS Independent'],
    license='Gnu Public License V2',
index f10157da61e2d4e6828b7a3c0faff979d8a67980,3978b4636d80e941c02aeb78f2c6066abb11bcf2..7f4cf2ece8cd0e9b12729246e792fd5e0ea9f4d1
@@@ -1,13 -1,15 +1,6 @@@
  # -*- coding: utf-8 -*-
  
 -import timeside.api
 -import timeside.exceptions
 -import timeside.core
 -import timeside.component
 -import timeside.metadata
 -import timeside.decoder
 -import timeside.encoder
 -import timeside.grapher
 -import timeside.analyzer
 -import timeside.tools
 -from timeside.core import *
 +import api
 +import core
  
- def get_processors(proc_type):
-     import timeside.decoder
-     import timeside.encoder
-     import timeside.grapher
-     import timeside.analyzer
-     return core.processors(proc_type)
- __version__ = '0.5'
+ __version__ = '0.4.4'