forked from BoboTiG/python-mss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
76 lines (70 loc) · 2.08 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[metadata]
name = mss
version = 8.0.0
author = Mickaël 'Tiger-222' Schoentgen
author_email = [email protected]
description = An ultra fast cross-platform multiple screenshots module in pure python using ctypes.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/BoboTiG/python-mss
home_page = https://pypi.org/project/mss/
project_urls =
Documentation = https://python-mss.readthedocs.io
Source = https://github.com/BoboTiG/python-mss
Tracker = https://github.com/BoboTiG/python-mss/issues
keywords = screen, screenshot, screencapture, screengrab
license = MIT
license_files =
LICENSE
platforms = Darwin, Linux, Windows
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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
Topic :: Multimedia :: Graphics :: Capture :: Screen Capture
Topic :: Software Development :: Libraries
[options]
zip_safe = False
include_package_data = True
packages_dir = mss
packages = find:
python_requires = >=3.7
[options.entry_points]
console_scripts =
mss = mss.__main__:main
[coverage:run]
omit =
mss/tests/*
[flake8]
ignore =
# E203 whitespace before ':', but E203 is not PEP 8 compliant
E203
# W503 line break before binary operator, but W503 is not PEP 8 compliant
W503
max-line-length = 120
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 120
[tool:pytest]
addopts =
--showlocals
--strict-markers
-r fE
-v
--cov=mss
--cov-report=term-missing
# Trait all tests as flaky by default
--force-flaky
--no-success-flaky-report