2014-02-07 10:39:30 +00:00
|
|
|
#!/usr/bin/env python
|
2011-12-06 20:27:09 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2014-02-07 10:33:46 +00:00
|
|
|
# Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org>
|
2011-12-06 20:27:09 +00:00
|
|
|
#
|
|
|
|
# This file is part of QWeeChat, a Qt remote GUI for WeeChat.
|
|
|
|
#
|
|
|
|
# QWeeChat is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# QWeeChat is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with QWeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
def listfiles(dir):
|
|
|
|
return ['%s/%s' % (dir, f) for f in os.listdir(dir)]
|
|
|
|
|
|
|
|
setup(name='qweechat',
|
2011-12-24 10:58:42 +00:00
|
|
|
version='0.0.1-dev',
|
2011-12-06 20:27:09 +00:00
|
|
|
description='Qt remote GUI for WeeChat',
|
|
|
|
long_description='Qt remote GUI for WeeChat',
|
|
|
|
author='Sébastien Helleu',
|
|
|
|
author_email='flashcode@flashtux.org',
|
2014-02-07 10:33:46 +00:00
|
|
|
url='http://weechat.org/',
|
2011-12-06 20:27:09 +00:00
|
|
|
license='GPL3',
|
|
|
|
classifiers = ['Development Status :: 2 - Pre-Alpha',
|
|
|
|
'Environment :: X11 Applications :: Qt',
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Communications :: Chat',
|
|
|
|
],
|
|
|
|
platforms='OS Independent',
|
|
|
|
packages=['qweechat',
|
|
|
|
'qweechat.weechat',
|
|
|
|
],
|
|
|
|
package_dir={'qweechat': 'src/qweechat',
|
|
|
|
'qweechat.weechat': 'src/qweechat/weechat',
|
|
|
|
},
|
|
|
|
data_files=[('data/icons', listfiles('data/icons'))]
|
|
|
|
)
|