]> jfr.im git - irc/weechat/qweechat.git/blame - setup.py
Fix conditions (use "is not")
[irc/weechat/qweechat.git] / setup.py
CommitLineData
7dcf23b1
SH
1# -*- coding: utf-8 -*-
2#
da74afdb 3# Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org>
7dcf23b1
SH
4#
5# This file is part of QWeeChat, a Qt remote GUI for WeeChat.
6#
7# QWeeChat 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# QWeeChat 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 QWeeChat. If not, see <http://www.gnu.org/licenses/>.
19#
20
77df9d06 21from setuptools import setup
7dcf23b1 22
77df9d06 23DESCRIPTION = 'Qt remote GUI for WeeChat'
7dcf23b1 24
77df9d06
SH
25setup(
26 name='qweechat',
27 version='0.0.1-dev',
28 description=DESCRIPTION,
29 long_description=DESCRIPTION,
30 author='Sébastien Helleu',
31 author_email='flashcode@flashtux.org',
32 url='http://weechat.org/',
33 license='GPL3',
34 keywords='weechat qt gui',
35 classifiers=[
36 'Development Status :: 4 - Beta',
37 'Environment :: X11 Applications :: Qt',
38 'Intended Audience :: End Users/Desktop',
39 'License :: OSI Approved :: GNU General Public License v3 '
40 'or later (GPLv3+)',
41 'Natural Language :: English',
42 'Operating System :: OS Independent',
43 'Programming Language :: Python',
44 'Topic :: Communications :: Chat',
45 ],
46 packages=['qweechat', 'qweechat.weechat'],
47 include_package_data=True,
48 package_data={'qweechat': ['data/icons/*.png']},
49 entry_points = {
50 'gui_scripts': [
51 'qweechat = qweechat.qweechat',
52 ],
53 'console_scripts': [
54 'qweechat-testproto = qweechat.weechat.testproto:main',
55 ]
56 }
57)