From: Benjamin Braatz Date: Tue, 2 Mar 2021 20:09:13 +0000 (+0100) Subject: Include development dependencies in setup.py X-Git-Tag: v0.3.0~82 X-Git-Url: http://git.graph-it.com/?a=commitdiff_plain;h=a6482eec75a590b2e584bf6da8692ba47884f3e2;p=graphit%2Fcontrolpi.git Include development dependencies in setup.py --- diff --git a/setup.py b/setup.py index 82be344..021e441 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,13 @@ setuptools.setup( long_description_content_type="text/markdown", url="http://docs.graph-it.com/graphit/controlpi", packages=['controlpi', 'controlpi.plugins'], + extras_require={ + 'dev': [ + 'pycodestyle', + 'pydocstyle', + 'mypy' + ] + }, classifiers=[ "Programming Language :: Python", "License :: OSI Approved :: MIT License",