]> jfr.im git - irc/weechat/qweechat.git/blame - setup.py
Add option relay.lines to limit the number of lines received on connection (default...
[irc/weechat/qweechat.git] / setup.py
CommitLineData
fbb0156d 1#!/usr/bin/env python
7dcf23b1
SH
2# -*- coding: utf-8 -*-
3#
da74afdb 4# Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org>
7dcf23b1
SH
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
22import os
23from distutils.core import setup
24
25def listfiles(dir):
26 return ['%s/%s' % (dir, f) for f in os.listdir(dir)]
27
28setup(name='qweechat',
8320f3a8 29 version='0.0.1-dev',
7dcf23b1
SH
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',
da74afdb 34 url='http://weechat.org/',
7dcf23b1
SH
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 )