This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
69 lines (63 loc) · 1.79 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 = tox-bindep
url = https://github.com/tox-dev/tox-bindep
project_urls =
Bug Tracker = https://github.com/tox-dev/tox-bindep/issues
Release Management = https://github.com/tox-dev/tox-bindep/releases
CI = https://github.com/tox-dev/tox-bindep/actions
Source Code = https://github.com/tox-dev/tox-bindep
description = Performs bindep checks before running
long_description = file: README.md
long_description_content_type = text/markdown
author = Sorin Sbarnea
author_email = [email protected]
maintainer = Sorin Sbarnea
maintainer_email = [email protected]
license = MIT
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Framework :: tox
License :: OSI Approved :: MIT 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 :: 3.9
Topic :: Software Development :: Testing
keywords =
bindep
tox
tox-plugin
[options]
use_scm_version = True
python_requires = >=3.6
package_dir =
= src
packages = find:
include_package_data = True
zip_safe = False
# These are required during `setup.py` run:
setup_requires =
setuptools_scm>=1.15.0
setuptools_scm_git_archive>=1.0
# These are required in actual runtime:
install_requires =
tox >= 3.18 # allowlist_externals
bindep >= 2.8.1
packaging
[options.entry_points]
tox =
bindep = tox_bindep.hooks
[options.packages.find]
where = src
[flake8]
# do not add excludes for files in repo
exclude = .venv/,.tox/,dist/,build/,.eggs/
format = pylint
# E203: https://github.com/python/black/issues/315
ignore = E203
#E741,W503,W504,H,E501,E203
# 88 is official black default:
max-line-length = 88