diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-24 15:00:15 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-24 15:00:15 -0500 |
commit | dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0 (patch) | |
tree | 7bd004ed70974f6cf512768a1d27275388a110be /setup.py | |
parent | 1e811c32250676cc83e79e4063d5420eb72a8f83 (diff) | |
download | external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.tar.gz external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.tar.bz2 external_python_setuptools-dbe5fff6e83e67c7249c38ab4bde5d70e80e5ad0.zip |
Drop support for Python 2.5 and Python 2.4. Fixes #41.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -169,8 +169,6 @@ setup_params = dict( License :: OSI Approved :: Python Software Foundation License License :: OSI Approved :: Zope Public License Operating System :: OS Independent - Programming Language :: Python :: 2.4 - Programming Language :: Python :: 2.5 Programming Language :: Python :: 2.6 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 @@ -184,17 +182,11 @@ setup_params = dict( """).strip().splitlines(), extras_require = { "ssl:sys_platform=='win32'": "wincertstore==0.1", - "ssl:sys_platform=='win32' and python_version=='2.4'": "ctypes==1.0.2", - "ssl:python_version in '2.4, 2.5'":"ssl==1.16", "certs": "certifi==0.0.8", }, dependency_links = [ 'https://pypi.python.org/packages/source/c/certifi/certifi-0.0.8.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec', - 'https://pypi.python.org/packages/source/s/ssl/ssl-1.16.tar.gz#md5=fb12d335d56f3c8c7c1fefc1c06c4bfb', 'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c', - 'https://bitbucket.org/pypa/setuptools/downloads/ctypes-1.0.2.win32-py2.4.exe#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc', - 'https://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.4-win32.egg#md5=3cfa2c526dc66e318e8520b6f1aadce5', - 'https://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.5-win32.egg#md5=85ad1cda806d639743121c0bbcb5f39b', ], scripts = [], # tests_require = "setuptools[ssl]", |