| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | |
|---|
| 3 | """ |
|---|
| 4 | Telemeta |
|---|
| 5 | |
|---|
| 6 | U{http://telemeta.org} |
|---|
| 7 | |
|---|
| 8 | @author: Guillaume Pellerin <pellerin@parisson.com> |
|---|
| 9 | @author: Olivier Guilyardi <olivier@samalyse.com> |
|---|
| 10 | @author: David Lipszyc <davidlipszyc@gmail.com> |
|---|
| 11 | @author: Riccardo Zaccarelli <riccardo.zaccarelli@gmail.com> |
|---|
| 12 | """ |
|---|
| 13 | |
|---|
| 14 | __docformat__ = 'epytext en' |
|---|
| 15 | __version__ = '1.4' |
|---|
| 16 | __url__ = 'http://telemeta.org' |
|---|
| 17 | __copyright__ = '(C) 2007-2011 Parisson' |
|---|
| 18 | __license__ = 'CeCILL-2' |
|---|
| 19 | __license_long__ = """ |
|---|
| 20 | Copyright (C) Parisson SARL (2007-2011) |
|---|
| 21 | |
|---|
| 22 | <yomguy@parisson.com> |
|---|
| 23 | <olivier@samalyse.com> |
|---|
| 24 | <riccardo.zaccarelli@gmail.com> |
|---|
| 25 | |
|---|
| 26 | This software is a computer program whose purpose is to backup, analyse, |
|---|
| 27 | transcode and stream any audio content with its metadata. |
|---|
| 28 | |
|---|
| 29 | This software is governed by the CeCILL v2 license under French law and |
|---|
| 30 | abiding by the rules of distribution of free software. You can use, |
|---|
| 31 | modify and/ or redistribute the software under the terms of the CeCILL |
|---|
| 32 | license as circulated by CEA, CNRS and INRIA at the following URL |
|---|
| 33 | "http://www.cecill.info". |
|---|
| 34 | |
|---|
| 35 | As a counterpart to the access to the source code and rights to copy, |
|---|
| 36 | modify and redistribute granted by the license, users are provided only |
|---|
| 37 | with a limited warranty and the software's author, the holder of the |
|---|
| 38 | economic rights, and the successive licensors have only limited |
|---|
| 39 | liability. |
|---|
| 40 | |
|---|
| 41 | In this respect, the user's attention is drawn to the risks associated |
|---|
| 42 | with loading, using, modifying and/or developing or reproducing the |
|---|
| 43 | software by the user in light of its specific status of free software, |
|---|
| 44 | that may mean that it is complicated to manipulate, and that also |
|---|
| 45 | therefore means that it is reserved for developers and experienced |
|---|
| 46 | professionals having in-depth computer knowledge. Users are therefore |
|---|
| 47 | encouraged to load and test the software's suitability as regards their |
|---|
| 48 | requirements in conditions enabling the security of their systems and/or |
|---|
| 49 | data to be ensured and, more generally, to use and operate it in the |
|---|
| 50 | same conditions as regards security. |
|---|
| 51 | |
|---|
| 52 | The fact that you are presently reading this means that you have had |
|---|
| 53 | knowledge of the CeCILL license and that you accept its terms. |
|---|
| 54 | """ |
|---|
| 55 | |
|---|
| 56 | |
|---|