diff options
Diffstat (limited to 'plugins/template/setup.py')
-rw-r--r-- | plugins/template/setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/template/setup.py b/plugins/template/setup.py index fa3f5135..eea51e1f 100644 --- a/plugins/template/setup.py +++ b/plugins/template/setup.py @@ -24,7 +24,7 @@ setuptools.setup( url='https://github.com/python-cmd2/cmd2-plugin-template', license='MIT', packages=['cmd2_myplugin'], - python_requires='>=3.4', + python_requires='>=3.6', install_requires=['cmd2 >= 0.9.4, <=2'], setup_requires=['setuptools_scm'], classifiers=[ @@ -34,10 +34,11 @@ setuptools.setup( 'Topic :: Software Development :: Libraries :: Python Modules', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ], # dependencies for development and testing # $ pip install -e .[dev] |