This commit is contained in:
emdee 2024-02-20 01:41:18 +00:00
parent 5e99216cf2
commit 55e7da35f4
38 changed files with 16 additions and 13 deletions

View file

@ -44,12 +44,12 @@ setup(
'Programming Language :: Python',
'Topic :: Communications :: Chat',
],
packages=['qweechat', 'qweechat.weechat'],
packages=['qweechat', 'qweechat.weechat', 'qweechat.data.icons'],
include_package_data=True,
package_data={'qweechat': ['data/icons/*.png']},
entry_points={
'gui_scripts': [
'qweechat = qweechat.qweechat:main',
'qweechat = qweechat.qweechat:iMain',
],
'console_scripts': [
'qweechat-testproto = qweechat.weechat.testproto:main',
@ -57,6 +57,7 @@ setup(
},
install_requires=[
'PyQt5',
'qtconsole',
],
zip_safe = False,
)