3
# Copyright 2011 Facundo Batista
5
# This program is free software: you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License version 3, as published
7
# by the Free Software Foundation.
9
# This program is distributed in the hope that it will be useful, but
10
# WITHOUT ANY WARRANTY; without even the implied warranties of
11
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
12
# PURPOSE. See the GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License along
15
# with this program. If not, see <http://www.gnu.org/licenses/>.
17
# For further info, check https://launchpad.net/encuentro
19
"""Build tar.gz for encuentro.
21
Needed packages to run (using Debian/Ubuntu package names):
23
python-zope.testbrowser 3.8.1
24
python-mechanize 0.1.11
25
python-twisted-bin 10.1.0
31
from distutils.core import setup
37
author = 'Facundo Batista',
38
author_email = 'facundo@taniquetil.com.ar',
39
description = 'Search, download and see the wonderful Encuentro content.',
40
long_description = 'Simple application that allows to search, download ' \
41
'and see the content of the Encuentro channel.',
42
url = 'https://launchpad.net/encuentro',
44
packages = ["encuentro"],
45
package_data = {"encuentro": ["ui/*.glade"]},
46
scripts = ["bin/encuentro"],