diff --git a/async_channel/channels/channel.py b/async_channel/channels/channel.py index a409c16..85e9e43 100644 --- a/async_channel/channels/channel.py +++ b/async_channel/channels/channel.py @@ -1,3 +1,4 @@ +# pylint: disable=too-many-positional-arguments # Drakkar-Software Async-Channel # Copyright (c) Drakkar-Software, All rights reserved. # diff --git a/setup.py b/setup.py index 928fde0..8d11a17 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ REQUIRES_PYTHON = '>=3.8' setup( - name=PROJECT_NAME, + name=PROJECT_NAME.lower().replace("-", "_"), version=VERSION, url='https://github.com/Drakkar-Software/Async-Channel', license='LGPL-3.0', diff --git a/standard.rc b/standard.rc index fec9032..730a8b6 100644 --- a/standard.rc +++ b/standard.rc @@ -36,10 +36,6 @@ persistent=yes # Specify a configuration file. #rcfile= -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no