forked from RedHatQE/widgetastic.core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (40 loc) · 1.16 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
[metadata]
name = widgetastic.core
author = Milan Falesnik
author_email = [email protected]
maintainer = Pete Savage
maintainer_email = [email protected]
description = Making testing of UIs fantastic
long_description= file: README.rst
license = Apache license
url = https://github.com/RedHatQE/widgetastic.core
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
[options]
install_requires =
anytree
cached_property
jsmin
pytest
selenium
selenium-smart-locator
wait_for
setup_requires = setuptools_scm
package_dir =
=src
packages = find:
[options.packages.find]
where = src
[flake8]
max-line-length = 100
ignore = E128,E811,W503,W504,E203