-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
77 lines (69 loc) · 1.84 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
77
[metadata]
name = robotframework-seleniumscreenshots
version = 0.9.6.dev0
description = Robot Framework keyword library for capturing annotated screenshots with SeleniumLibrary
long_description = file: README.rst, CHANGELOG.rst
keywords = robotframework selenium
author = Asko Soukka
author_email = [email protected]
url = https://github.com/datakurre/robotframework-seleniumscreenshots
license = BSD-3-Clause
classifiers =
Intended Audience :: Developers
Intended Audience :: Information Technology
Framework :: Robot Framework
Framework :: Robot Framework :: Library
License :: OSI Approved :: BSD License
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
[options]
install_requires =
setuptools
robotframework>=3.0.2
robotframework-seleniumlibrary>=3.2.0
package_dir =
= src
packages = find:
zip_safe = False
include_package_data = True
[options.package_data]
* =
resources
[options.packages.find]
where =
src
[options.extras_require]
docs =
sphinx
pillow
sphinxcontrib-robotframework
PIL =
PIL
Pillow =
pillow
[aliases]
test = pytest
[flake8]
exclude = .git,__pycache__,build,dist
max-complexity = 20
[isort]
force_alphabetical_sort = True
force_single_line = True
lines_after_imports = 2
line_length = 200
not_skip = __init__.py
[yapf]
based_on_style = pep8
allow_split_before_dict_value = False
allow_multiline_lambdas = True
coalesce_brackets = True
dedent_closing_brackets = True
join_multiple_lines = False
space_between_ending_comma_and_closing_bracket = True
split_arguments_when_comma_terminated = True
split_before_expression_after_opening_paren = True
split_before_first_argument = True
split_complex_comprehension = True