summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2016-12-09 21:18:39 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2016-12-09 21:18:39 -0500
commitcdbf6ec4764a3a6035ba6d0e9c6abd12cee09237 (patch)
treec261c02066c79c786253ca3fefa89e5b9e25e5ee /setup.py
parent06331d3ab75feb807dc48d824cbd54898a6b6cdd (diff)
downloadcmd2-git-cdbf6ec4764a3a6035ba6d0e9c6abd12cee09237.tar.gz
Second stage of refactoring using six module for unified Python 2/3 codebase
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 61c84f17..39f2f2e2 100755
--- a/setup.py
+++ b/setup.py
@@ -2,9 +2,9 @@
# coding=utf-8
from setuptools import setup
-install_requires = ['pyparsing >= 2.0.1']
+install_requires = ['pyparsing >= 2.0.1', 'six']
-tests_require = ['mock', 'pytest', 'six']
+tests_require = ['mock', 'pytest']
setup(
name="cmd2",