From: yomguy Date: Mon, 30 May 2011 14:24:59 +0000 (+0000) Subject: prepare package X-Git-Tag: 0.3.2~28 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d80ebe451a957d3977bdeaea84acb62bc42048f0;p=timeside.git prepare package --- diff --git a/README b/README deleted file mode 100644 index abad920..0000000 --- a/README +++ /dev/null @@ -1,73 +0,0 @@ -====== -README -====== - -TimeSide is a set of client and server side components for audio-enabling web sites and applications. -It includes a powerful DHTML-based interactive player, with support for time-marking. -The server side components provide generic APIs for easy transcoding, metadata embedding, -sound visualization and audio analysis. - -Platforms -========= - -TimeSide is intended to work on all Unix / Linux platforms. -MacOS X and Windows versions will soon be explorated. - - -Dependencies -============ - -For TimeSide Core:: - - python (>= 2.4), python-xml, python-mutagen, python-imaging (>= 1.1.6),python-numpy, - python-setuptools (>= 0.6b3), python-gst0.10, gstreamer0.10-plugins-base, - gstreamer0.10-plugins-fluendo-mp3, gstreamer0.10-plugins-good - -For TimeSide UI (optional):: - - * SoundManager 2 >= 2.91 : http://www.schillmania.com/projects/soundmanager2 - * jQuery => 1.2.6 : http://www.jquery.com - * jsGraphics => 3.03 http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm - * See timeside/ui/README - - -Copyright -========= - -Copyright (c) 2006, 2010 Parisson SARL (parisson.com), -Copyright (c) 2006, 2010 Samalyse SARL (samalyse.com), -All rights reserved. - -Authors:: - - Guillaume Pellerin - Olivier Guilyardi - Paul Brossier - - -License -======= - -TimeSide 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. - -TimeSide 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 General Public License for more details. - -See LICENSE for more details. - - -Install -======= - -See INSTALL for full details. - - -Contact and Informations -======================== - -See http://code.google.com/p/timeside/ diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..4efe8e6 --- /dev/null +++ b/README.rst @@ -0,0 +1,73 @@ +====== +README +====== + +TimeSide is a set of client and server side components for audio-enabling web sites and applications. +It includes a powerful DHTML-based interactive player, with support for time-marking. +The server side components provide generic APIs for easy transcoding, metadata embedding, +sound visualization and audio analysis. + +Platforms +========= + +TimeSide is intended to work on all Unix / Linux platforms. +MacOS X and Windows versions will soon be explorated. + + +Dependencies +============ + +For TimeSide Core:: + + python (>= 2.4), python-xml, python-mutagen, python-imaging (>= 1.1.6),python-numpy, + python-setuptools (>= 0.6b3), python-gst0.10, gstreamer0.10-plugins-base, + gstreamer0.10-plugins-fluendo-mp3, gstreamer0.10-plugins-good + +For TimeSide UI (optional):: + + * SoundManager 2 >= 2.91 : http://www.schillmania.com/projects/soundmanager2 + * jQuery => 1.2.6 : http://www.jquery.com + * jsGraphics => 3.03 http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm + * See timeside/ui/README + + +Copyright +========= + +Copyright (c) 2006, 2011 Parisson SARL (parisson.com), +Copyright (c) 2006, 2010 Samalyse SARL (samalyse.com), +All rights reserved. + +Authors:: + + Guillaume Pellerin + Olivier Guilyardi + Paul Brossier + + +License +======= + +TimeSide 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. + +TimeSide 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 General Public License for more details. + +See LICENSE for more details. + + +Install +======= + +See INSTALL for full details. + + +Contact and Informations +======================== + +See http://code.google.com/p/timeside/ diff --git a/setup.py b/setup.py index 6c2c9d5..e49b8ef 100644 --- a/setup.py +++ b/setup.py @@ -9,20 +9,21 @@ __version__ = '0.3' # The base package metadata to be used by both distutils and setuptools METADATA = dict( - name = "timeside", + name = "TimeSide", version = __version__, py_modules = ['timeside'], description='Web Audio Components', - author='Olivier Guilyardi, Paul Brossier, Guillaume Pellerin', + author='Olivier Guilyardi, Paul Brossier, Guillaume Pellerin, Riccardo Zaccarelli', author_email='yomguy@parisson.com', license='Gnu Public License V2', url='http://code.google.com/p/timeside', packages=['timeside','timeside.decoder','timeside.encoder','timeside.grapher', 'timeside.analyzer','timeside.tests','timeside.tests.api'], - keywords='audio analyze transcode graph', + keywords='audio analyze transcode graph player metadata', install_requires = ['setuptools',], include_package_data = True, - scripts=['timeside/tools/waveform_batch.py'], + classifiers = ['Intended Audience :: Science/Research', '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', ], + )