Updated code quality class doc string, import ignore & comment spaces in setup.py

This commit is contained in:
kuldeep.k@cisinlabs.com 2021-08-20 22:04:28 +05:30
parent fba8c1ffb4
commit 135715905f
No known key found for this signature in database
GPG Key ID: AF4FB299BF7C7C2A

View File

@ -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',