phantompy/setup.cfg

66 lines
1.2 KiB
INI
Raw Normal View History

2022-11-17 08:07:23 +00: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
2024-02-02 08:31:47 +00:00
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
2022-11-17 08:07:23 +00:00
Programming Language :: Python :: Implementation :: CPython
Framework :: AsyncIO
[options]
zip_safe = false
2024-02-02 08:31:47 +00:00
python_requires = ~=3.8
2022-11-17 08:07:23 +00:00
include_package_data = false
install_requires =
qasync
2022-11-18 16:16:26 +00:00
cryptography
rsa
stem
2024-02-02 08:31:47 +00:00
package_dir=
=src
packages=find:
[options.packages.find]
where=src
2022-11-17 08:07:23 +00:00
[options.entry_points]
console_scripts =
phantompy = phantompy.__main__:iMain
[easy_install]
zip_ok = false
[flake8]
jobs = 1
max-line-length = 88
ignore =
E111
E114
2022-11-17 08:56:04 +00:00
E128
E225
2022-11-17 08:07:23 +00:00
E261
E302
E305
E402
E501
E502
E541
E701
2024-02-02 08:31:47 +00:00
E702
2022-11-17 08:56:04 +00:00
E704
2022-11-17 08:07:23 +00:00
E722
E741
2022-11-17 08:56:04 +00:00
F508
2022-11-17 08:07:23 +00:00
F541
2022-11-17 08:56:04 +00:00
W503
2024-02-02 08:31:47 +00:00
W601