From 64e9366197474cb3a820dd140f356ea14867c521 Mon Sep 17 00:00:00 2001 From: Floris Lambrechts Date: Thu, 2 Jan 2020 21:46:17 +0100 Subject: [PATCH] fix: Also install bump2version as development tool --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c416081..7fe422d 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ ] EXTRAS = { - "dev": ['setuptools', 'wheel', 'twine', 'pylint', 'flake8', 'flake8-isort', 'black'], + "dev": ['setuptools', 'wheel', 'twine', 'pylint', 'flake8', 'flake8-isort', 'black', 'bump2version'], } HERE = os.path.abspath(os.path.dirname(__file__))