diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 21:18:39 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 21:18:39 -0500 |
commit | cdbf6ec4764a3a6035ba6d0e9c6abd12cee09237 (patch) | |
tree | c261c02066c79c786253ca3fefa89e5b9e25e5ee /setup.py | |
parent | 06331d3ab75feb807dc48d824cbd54898a6b6cdd (diff) | |
download | cmd2-git-cdbf6ec4764a3a6035ba6d0e9c6abd12cee09237.tar.gz |
Second stage of refactoring using six module for unified Python 2/3 codebase
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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", |