]> jfr.im git - irc/weechat/qweechat.git/blob - setup.py
Remove INSTALL (merge into README), add screenshot in README
[irc/weechat/qweechat.git] / setup.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org>
5 #
6 # This file is part of QWeeChat, a Qt remote GUI for WeeChat.
7 #
8 # QWeeChat is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # QWeeChat is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with QWeeChat. If not, see <http://www.gnu.org/licenses/>.
20 #
21
22 import os
23 from distutils.core import setup
24
25 def listfiles(dir):
26 return ['%s/%s' % (dir, f) for f in os.listdir(dir)]
27
28 setup(name='qweechat',
29 version='0.0.1-dev',
30 description='Qt remote GUI for WeeChat',
31 long_description='Qt remote GUI for WeeChat',
32 author='Sébastien Helleu',
33 author_email='flashcode@flashtux.org',
34 url='http://weechat.org/',
35 license='GPL3',
36 classifiers = ['Development Status :: 2 - Pre-Alpha',
37 'Environment :: X11 Applications :: Qt',
38 'Intended Audience :: End Users/Desktop',
39 'License :: OSI Approved :: GNU General Public License (GPL)',
40 'Natural Language :: English',
41 'Operating System :: OS Independent',
42 'Programming Language :: Python',
43 'Topic :: Communications :: Chat',
44 ],
45 platforms='OS Independent',
46 packages=['qweechat',
47 'qweechat.weechat',
48 ],
49 package_dir={'qweechat': 'src/qweechat',
50 'qweechat.weechat': 'src/qweechat/weechat',
51 },
52 data_files=[('data/icons', listfiles('data/icons'))]
53 )