qweechat/setup.cfg

63 lines
1.1 KiB
INI
Raw Permalink Normal View History

2024-02-13 19:59:07 +01:00
[metadata]
classifiers =
License :: OSI Approved
License :: OSI Approved :: BSD 1-clause
Intended Audience :: Web Developers
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: BSD :: FreeBSD
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
[options]
zip_safe = false
2024-02-20 02:41:18 +01:00
python_requires = >= 3.7
2024-02-13 19:59:07 +01:00
package_dir=
2024-02-20 02:41:18 +01:00
=src
# find:
packages =
qweechat
qweechat.weechat
2024-02-13 19:59:07 +01:00
2024-02-14 00:04:44 +01:00
[options.package_data]
qweechat =
data/icons/*.png
2024-02-13 19:59:07 +01:00
[options.entry_points]
2024-02-20 02:41:18 +01:00
gui_scripts =
2024-02-13 19:59:07 +01:00
qweechat = "qweechat:iMain"
[easy_install]
zip_ok = false
[flake8]
jobs = 1
max-line-length = 88
ignore =
E111
E114
E128
E225
E261
E302
E305
E402
E501
E502
E541
E701
E702
E704
E722
E741
F508
F541
W503
W601