From 135715905f4a86525ff4ee71cd0eca59edfdd89b Mon Sep 17 00:00:00 2001 From: "kuldeep.k@cisinlabs.com" Date: Fri, 20 Aug 2021 22:04:28 +0530 Subject: [PATCH] Updated code quality class doc string, import ignore & comment spaces in setup.py --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 77ec81c8..ed3d4705 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,8 @@ EXTRAS_REQUIRE = { class InstallCmd(install): + '''Install cmd''' + def run(self): # prepare icons directories try: @@ -84,7 +86,7 @@ if __name__ == "__main__": "msgpack-python" if msgpack.version[:2] < (0, 6) else "msgpack") except ImportError: try: - import umsgpack + import umsgpack # noqa:F401 installRequires.append("umsgpack") except ImportError: packages += ['pybitmessage.fallback.umsgpack'] @@ -115,11 +117,11 @@ if __name__ == "__main__": long_description=README, license='MIT', # TODO: add author info - #author='', - #author_email='', + # author='', + # author_email='', url='https://bitmessage.org', # TODO: add keywords - #keywords='', + # keywords='', install_requires=installRequires, tests_require=requirements, test_suite='tests.unittest_discover',