]> jfr.im git - irc/weechat/qweechat.git/blobdiff - setup.py
Ignore bandit security error about possible hardcoded password
[irc/weechat/qweechat.git] / setup.py
index 41e5af7de4c0205bd5bf02c6539ed0d1b89a52df..5bc48966b9696347cfafdf784ba579a76849b24b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2011-2016 Sébastien Helleu <flashcode@flashtux.org>
+# Copyright (C) 2011-2021 Sébastien Helleu <flashcode@flashtux.org>
 #
 # This file is part of QWeeChat, a Qt remote GUI for WeeChat.
 #
@@ -47,12 +47,15 @@ setup(
     packages=['qweechat', 'qweechat.weechat'],
     include_package_data=True,
     package_data={'qweechat': ['data/icons/*.png']},
-    entry_points = {
+    entry_points={
         'gui_scripts': [
             'qweechat = qweechat.qweechat:main',
         ],
         'console_scripts': [
             'qweechat-testproto = qweechat.weechat.testproto:main',
         ]
-    }
+    },
+    install_requires=[
+        'PySide6',
+    ],
 )