X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/0078efe3d4704ba9ac187d7f3195c7945e442a41..a09e1e3d673ca08cee5919b51a00ccf6616687b7:/setup.py diff --git a/setup.py b/setup.py index f3c613a..d990bbf 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,13 @@ from setuptools import setup, find_packages import sys, os -version = '1.13.0' +version = '1.15.0' install_requires = [ # -*- Extra requirements: -*- ] +if sys.version_info < (2,7): + install_requires.append('argparse') setup(name='twitter', version=version, @@ -18,7 +20,9 @@ setup(name='twitter', "Intended Audience :: End Users/Desktop", "Natural Language :: English", "Operating System :: OS Independent", + "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Communications :: Chat :: Internet Relay Chat",