diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 16:54:10 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 16:54:10 -0500 |
commit | 06331d3ab75feb807dc48d824cbd54898a6b6cdd (patch) | |
tree | 24034e3f0ff7cd94239d575fe046acc550e7a49f /setup.py | |
parent | b9658cff197beff5a00632a68ecf85838879835e (diff) | |
download | cmd2-git-06331d3ab75feb807dc48d824cbd54898a6b6cdd.tar.gz |
First stage of refactoring to support full simultaneous Python 2 and 3 compatibility via use of the six module.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 23 |
1 files changed, 13 insertions, 10 deletions
@@ -1,9 +1,11 @@ #!/usr/bin/python -from setuptools import setup, find_packages -import sys +# coding=utf-8 +from setuptools import setup install_requires = ['pyparsing >= 2.0.1'] +tests_require = ['mock', 'pytest', 'six'] + setup( name="cmd2", version="0.6.9", @@ -11,14 +13,15 @@ setup( use_2to3=True, # metadata for upload to PyPI - author = 'Catherine Devlin', - author_email = 'catherine.devlin@gmail.com', - description = "Extra features for standard library's cmd module", - license = 'MIT', - keywords = 'command prompt console cmd', - url = 'http://packages.python.org/cmd2/', - install_requires = install_requires, - long_description = """Enhancements for standard library's cmd module. + author='Catherine Devlin', + author_email='catherine.devlin@gmail.com', + description="Extra features for standard library's cmd module", + license='MIT', + keywords='command prompt console cmd', + url='http://packages.python.org/cmd2/', + install_requires=install_requires, + tests_require=tests_require, + long_description="""Enhancements for standard library's cmd module. Drop-in replacement adds several features for command-prompt tools: |