Revision 98b243e4bd38be6bc9addbe86bc750942cb89e21 authored by Hervé Rouault on 15 May 2022, 09:35:37 UTC, committed by Hervé Rouault on 15 May 2022, 09:35:37 UTC
1 parent 4ba8810
Raw File
setup.cfg
[metadata]
name = somatic-inhibition

author = Shrisha Rao Balappa
author_email = shrisha.rao-balappa@univ-amu.fr

maintainer = Hervé Rouault
maintainer_email = herve.rouault@univ-amu.fr

license = MIT
description = Somatic inhibition analyses and modeling
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
    Programming Language :: Python :: 3
    Programming Language :: Python :: Implementation :: CPython
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent

[options]
python_requires = >=3.9
packages = find:
package_dir =
    =src
include_package_data = True

[flake8]
ignore =
    # E800: commented out code
    E800,
    # RST203: Definition list ends without a blank line; unexpected unindent.
    RST203,
    # RST301: Unexpected indentation.
    RST301,
    # W503: line break before binary operator
    W503,
    # WPS111: too short variable name
    WPS111,
#     # WPS114: Found underscored number name pattern
#     WPS114,
#     # WPS201: Found module with too many imports
#     WPS201,
    # Found too many module members
    WPS202,
    # Found overused expression
    WPS204,
    # Found too many local variables
    WPS210,
    # Found too many expressions
    WPS213,
    # Found too deep access level
    WPS219,
    # Found line with high Jones Complexity
    WPS221,
    # Found string literal over-use
    WPS226,
#     # Found function with too much cognitive complexity
#     WPS231,
#     # Found module cognitive complexity that is too high
#     WPS232,
#     # Found `f` string
#     WPS305,
    # Found a line that starts with a dot
    WPS348,
    # Found a float zero
    WPS358,
    # Found magic number
    WPS432,
#     # Found block variables overlap
#     WPS440,
#     # Found likely bitwise and boolean operation mixup
#     WPS465
# extend-ignore = E203
docstring_style = google
docstring-convention = google
strictness = long
max-complexity = 30
back to top