forked from scrapd/scrapd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
69 lines (61 loc) · 1.36 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
[metadata]
name = scrapd
summary = Extract data from APD news site
description-file =
README.rst
author = Rémy Greinhofer
author-email = info@scrapd.org
home-page = https://www.scrapd.org
classifier =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Topic :: Utilities
[files]
data_files =
etc/bash_completion.d/ = contrib/scrapd-complete.sh
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all_files = 1
warning-is-error = 1
[entry_points]
console_scripts =
scrapd = scrapd.cli.cli:cli
[pbr]
builder = html,text
skip_authors = True
skip_changelog = True
all_files = 1
[wheel]
universal = 0
[flake8]
exclude =
*.egg-info,
*.pyc,
.cache,
.eggs
.git,
.tox,
__pycache__,
build,
dist,
docs/source/conf.py,
tests/fixtures/*
import-order-style = google
max-complexity = 10
max-line-length = 120
[pydocstyle]
match = (?!test_|__).*\.py
ignore = D106,D202,D203,D212,D213
[tool:pytest]
addopts = --disable-pytest-warnings --disable-warnings -n auto
markers =
dump: uses dumped files to spot parsing issues