X-Git-Url: https://jfr.im/git/z_archive/twitter.git/blobdiff_plain/d92a068d62a35659c252c5fc93dedd358aa7486a..a5e40197cf272175a8bc4aa39d4c5b6e545c751c:/setup.py diff --git a/setup.py b/setup.py index f8c7097..0f73e60 100644 --- a/setup.py +++ b/setup.py @@ -1,20 +1,15 @@ from setuptools import setup, find_packages import sys, os -version = '1.3.1' +version = '1.5.2' install_requires = [ # -*- Extra requirements: -*- - "python-dateutil>=1.1", ] -def _py26OrGreater(): - return sys.hexversion > 0x20600f0 - -if not _py26OrGreater(): +if sys.version_info < (2,6,): install_requires.append("simplejson>=1.7.1") - setup(name='twitter', version=version, description="An API and command-line toolset for Twitter (twitter.com)", @@ -26,7 +21,7 @@ setup(name='twitter', "Intended Audience :: End Users/Desktop", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python", + "Programming Language :: Python :: 2", "Topic :: Communications :: Chat :: Internet Relay Chat", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", "Topic :: Utilities",