forked from gorakhargosh/watchdog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
30 lines (26 loc) · 753 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
[metadata]
project_urls =
Documentation=https://python-watchdog.readthedocs.io/en/stable/
Source=https://github.com/gorakhargosh/watchdog/
Issues=https://github.com/gorakhargosh/watchdog/issues
Changelog=https://github.com/gorakhargosh/watchdog/blob/master/changelog.rst
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all_files = 1
[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
[upload_sphinx]
# Requires sphinx-pypi-upload to work.
upload-dir = docs/build/html
[tool:pytest]
addopts =
--showlocals
-v
--cov=watchdog
--cov-report=term-missing