-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (37 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 = tox-faster
description = A tox plugin that speeds up tox a little.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/hypothesis/tox-faster
project_urls =
Bug Tracker = https://github.com/hypothesis/tox-faster/issues
Changelog = https://github.com/hypothesis/tox-faster/releases
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Intended Audience :: Developers
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
[options.packages.find]
where = src
[options.entry_points]
tox =
tox-faster = tox_faster
[pycodestyle]
ignore =
# Disable pycodestyle errors and warnings that we don't care about because
# Black formats our code for us.
E203, # Whitespace before ':',
E231, # Missing whitespace after ',',
E501, # Line too long,
W503, # Line break before binary operator,
# "Comparison to None should be 'if cond is None:'.
# PyLint finds these so we don't need pycodestyle to.
E711,
# Bare except. PyLint finds these for us so we don't need pycodestyle to.
E722,