Skip to content
Snippets Groups Projects
setup.cfg 465 B
[metadata]
name = envsetup
long_description = file: README.md
long_description_content_type = text/markdown

[options]
setup_requires=
    setuptools
    wheel

[options.extras_require]
dev =
    black
    flake8
    pylint
    pysnooper

[flake8]
exclude =
    .venv/
ignore =
    E501
    W503
    W505
max-line-length = 88

[pylint]
ignore=
disable=
    bad-continuation,
    invalid-name,
    missing-docstring,
    too-few-public-methods,
    too-many-locals,