-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (41 loc) · 881 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[metadata]
name = win_caffeine
description = Python starter package
version = 0.0.1
author = Stanislav Sabev
license = MIT
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3 :: 3.10
Programming Language :: Python :: 3 :: 3.11
[options]
packages =
win_caffeine
install_requires =
PySide2 == 5.15.2.1
pyqtdarktheme == 2.1.0
python_requires = >=3.10.11
package_dir =
=src
zip_safe = False
[options.extras_require]
testing =
pytest>=7.3.0
pytest-cov>=4.1.0
mock>=5.0.0
black>=23.3.0
mypy>=1.2.0
flake8>=6.0.0
tox>=4.4.10
[options.package_data]
win_caffeine = py.typed
[flake8]
exclude =
__pycache__,
.venv,
max-line-length = 99
count = true
max-complexity = 10