From 888f3bb34e2dbf8be5c44d43eb08055df59eec71 Mon Sep 17 00:00:00 2001 From: yomguy Date: Tue, 12 Feb 2013 13:25:05 +0100 Subject: [PATCH] add news and descriptions, go to 0.4.3 --- README.rst | 8 ++++++++ setup.py | 9 +++++++-- timeside/encoder/__init__.py | 4 ++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 861719b..74b02e5 100644 --- a/README.rst +++ b/README.rst @@ -32,6 +32,14 @@ Here is a schematic diagram of the TimeSide engine architecture: News ===== +0.4.3 + + * finally fix decoder leaks and de-synchronizations (thanks to piem) + * this also fixes bad variable encoder file lengths + * fix OGG and FLAC encoders (closes: #8) + * fix multi-channels streaming (closes: #13) + * add support for Pillow (closes: #12) + 0.4.2 * many releases these days, but there are some patches which are really worth to be HOT released : we just need them in production.. diff --git a/setup.py b/setup.py index d83e7ac..d89ab7d 100644 --- a/setup.py +++ b/setup.py @@ -4,13 +4,18 @@ from setuptools import setup, find_packages CLASSIFIERS = [ 'Intended Audience :: Science/Research', + 'Intended Audience :: Developers', + 'Intended Audience :: Information Technology', 'Programming Language :: Python', 'Programming Language :: JavaScript', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Analysis', 'Topic :: Multimedia :: Sound/Audio :: Players', - 'Topic :: Scientific/Engineering :: Information Analysis', ] + 'Topic :: Multimedia :: Sound/Audio :: Conversion', + 'Topic :: Scientific/Engineering :: Information Analysis', + 'Topic :: Software Development :: Libraries :: Python Modules', + ] KEYWORDS = 'audio analyze transcode graph player metadata' @@ -19,7 +24,7 @@ setup( url='http://code.google.com/p/timeside', description = "open and fast web audio components", long_description = open('README.rst').read(), - author = ["Guillaume Pellerin", "Olivier Guilyardi", "Riccardo Zaccarelli", "Paul Brossier"], + author = "Guillaume Pellerin, Olivier Guilyardi, Paul Brossier, Riccardo Zaccarelli", author_email = ["yomguy@parisson.com","olivier@samalyse.com", "riccardo.zaccarelli@gmail.com", "piem@piem.org"], version = '0.4.3', install_requires = [ diff --git a/timeside/encoder/__init__.py b/timeside/encoder/__init__.py index b8e431e..7749045 100644 --- a/timeside/encoder/__init__.py +++ b/timeside/encoder/__init__.py @@ -5,5 +5,5 @@ from ogg import * from wav import * from mp3 import * from flac import * -#from m4a import * -#from webm import * +# from m4a import * +# from webm import * -- 2.39.5