5
by Facundo Batista
Distributable\! |
1 |
#!/usr/bin/env python
|
2 |
||
3 |
# Copyright 2011 Facundo Batista
|
|
4 |
#
|
|
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.
|
|
8 |
#
|
|
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.
|
|
13 |
#
|
|
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/>.
|
|
16 |
#
|
|
17 |
# For further info, check https://launchpad.net/encuentro
|
|
18 |
||
19 |
"""Build tar.gz for encuentro.
|
|
20 |
||
21 |
Needed packages to run (using Debian/Ubuntu package names):
|
|
22 |
||
23 |
python-zope.testbrowser 3.8.1
|
|
24 |
python-mechanize 0.1.11
|
|
25 |
python-twisted-bin 10.1.0
|
|
26 |
python-gtk2 2.21.0
|
|
27 |
python-xdg 0.19
|
|
28 |
"""
|
|
29 |
||
30 |
||
31 |
from distutils.core import setup |
|
32 |
||
33 |
setup( |
|
34 |
name = 'encuentro', |
|
35 |
version = '0.1', |
|
36 |
license = 'GPL-3', |
|
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', |
|
43 |
||
44 |
packages = ["encuentro"], |
|
45 |
package_data = {"encuentro": ["ui/*.glade"]}, |
|
46 |
scripts = ["bin/encuentro"], |
|
47 |
)
|