]> jfr.im git - irc/weechat/qweechat.git/blob - setup.py
Ignore bandit security error about possible hardcoded password
[irc/weechat/qweechat.git] / setup.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2011-2021 Sébastien Helleu <flashcode@flashtux.org>
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
21 from setuptools import setup
22 from qweechat.version import qweechat_version
23
24 DESCRIPTION = 'Qt remote GUI for WeeChat'
25
26 setup(
27 name='qweechat',
28 version=qweechat_version(),
29 description=DESCRIPTION,
30 long_description=DESCRIPTION,
31 author='Sébastien Helleu',
32 author_email='flashcode@flashtux.org',
33 url='https://weechat.org/',
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']},
50 entry_points={
51 'gui_scripts': [
52 'qweechat = qweechat.qweechat:main',
53 ],
54 'console_scripts': [
55 'qweechat-testproto = qweechat.weechat.testproto:main',
56 ]
57 },
58 install_requires=[
59 'PySide6',
60 ],
61 )