-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
49 lines (45 loc) · 1.17 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
[metadata]
name = explicit
author = Levi Noecker
author-email = levi.noecker@gmail.com
summary = Easy explicit wait helpers for Selenium
description-file = README.rst
home-page = https://github.com/levi-rs/explicit
license = MIT
keywords = selenium explicit wait implicit
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Testing
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[files]
packages =
explicit
[wheel]
universal = 1
[flake8]
count = True
statistics = True
max-complexity = 10
max-line-length = 100
output-file = {envdir}/flake8.txt
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
build,
dist,