~ubuntu-branches/ubuntu/raring/screenlets/raring

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Julien Lavergne
  • Date: 2012-02-12 22:47:27 UTC
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: package-import@ubuntu.com-20120212224727-kjobpgxp3tmw95qd
Tags: upstream-0.1.6
ImportĀ upstreamĀ versionĀ 0.1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
#
3
3
# INFO: The setup-script for the screenlets
4
 
#
5
4
# (c) 2008 Rico Pfaus (RYX), Helder Fraga (Whise), and Natan Yellin (Aantn)
 
5
# (c) 2010-2011 Guido Tabbernuk
6
6
#
 
7
# This program is free software: you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation, either version 3 of the License, or
 
10
# (at your option) any later version.
 
11
 
12
# This program is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
7
19
 
8
20
from distutils.core import setup
9
21
import distutils.sysconfig
14
26
#sys.path.insert(0, 'src/')
15
27
#import lib  # screenlets-package called 'lib' here because of the dir-names
16
28
 
17
 
VERSION = open("VERSION").readline()
 
29
VERSION = open("VERSION").readline().strip()
18
30
 
19
31
def filter_filename_callback(filename):
20
32
        """Called by make_file_list to determine which files to add/install 
77
89
        'src/share/screenlets-manager/screenlets-daemon.py',
78
90
        'src/share/screenlets-manager/screenlets-packager.py',
79
91
        'src/share/screenlets-manager/screenlets-debianizer.py',
 
92
        'src/share/screenlets-manager/prefs.js',
80
93
        'src/share/screenlets-manager/noimage.svg',
81
94
        'src/share/screenlets-manager/KarambaScreenlet.py',
82
95
        'src/share/screenlets-manager/widget.png',
83
96
        'src/share/screenlets-manager/WidgetScreenlet.py',
84
 
        'src/share/screenlets-manager/webapp.png',
85
 
        'src/share/screenlets-manager/WebappScreenlet.py',
 
97
        'src/share/screenlets-manager/webframe.png',
 
98
        'src/share/screenlets-manager/WebframeScreenlet.py',
86
99
        'src/share/screenlets-manager/karamba.png']))
87
100
 
88
101
 
128
141
        version                 = VERSION,
129
142
        description             = 'A widget framework for Linux',
130
143
        url                     = 'http://www.screenlets.org',
131
 
        author                  = 'Whise (Helder Fraga)<helder.fraga@hotmail.com>, RYX (Rico Pfaus) <ryx@ryxperience.com>, Sorcerer (Hendrik Kaju), Natan Yellin (Aantn) <aantny@gmail.com>',
132
 
        author_email            = 'helderfraga@hotmail.com',
 
144
        author                  = 'Whise (Helder Fraga) <helder.fraga@hotmail.com>, RYX (Rico Pfaus) <ryx@ryxperience.com>, Sorcerer (Hendrik Kaju), Natan Yellin (Aantn) <aantny@gmail.com>, Guido Tabbernuk <boamaod@gmail.com>',
 
145
        author_email            = 'boamaod@gmail.com',
133
146
        license                 = 'GPL v3',
134
147
        packages                = PACKAGES,
135
148
        package_dir             = {'screenlets': 'src/lib'},