]> jfr.im git - irc/weechat/qweechat.git/blame - setup.py
Ignore bandit security error about possible hardcoded password
[irc/weechat/qweechat.git] / setup.py
CommitLineData
7dcf23b1
SH
1# -*- coding: utf-8 -*-
2#
8335009d 3# Copyright (C) 2011-2021 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
184c3dc6 22from qweechat.version import qweechat_version
7dcf23b1 23
77df9d06 24DESCRIPTION = 'Qt remote GUI for WeeChat'
7dcf23b1 25
77df9d06
SH
26setup(
27 name='qweechat',
184c3dc6 28 version=qweechat_version(),
77df9d06
SH
29 description=DESCRIPTION,
30 long_description=DESCRIPTION,
31 author='Sébastien Helleu',
32 author_email='flashcode@flashtux.org',
9036a59a 33 url='https://weechat.org/',
77df9d06
SH
34 license='GPL3',
35 keywords='weechat qt gui',
36 classifiers=[
37 'Development Status :: 4 - Beta',
38 'Environment :: X11 Applications :: Qt',
39 'Intended Audience :: End Users/Desktop',
40 'License :: OSI Approved :: GNU General Public License v3 '
41 'or later (GPLv3+)',
42 'Natural Language :: English',
43 'Operating System :: OS Independent',
44 'Programming Language :: Python',
45 'Topic :: Communications :: Chat',
46 ],
47 packages=['qweechat', 'qweechat.weechat'],
48 include_package_data=True,
49 package_data={'qweechat': ['data/icons/*.png']},
dfe51b71 50 entry_points={
77df9d06 51 'gui_scripts': [
b546f2fc 52 'qweechat = qweechat.qweechat:main',
77df9d06
SH
53 ],
54 'console_scripts': [
55 'qweechat-testproto = qweechat.weechat.testproto:main',
56 ]
0ee7d2e9 57 },
dfe51b71 58 install_requires=[
0ee7d2e9 59 'PySide6',
e260a20f 60 ],
77df9d06 61)