Remove support for python 2.6

This commit is contained in:
rbas
2014-10-23 23:48:32 +02:00
parent 68b40f1819
commit 2975c42cfa
2 changed files with 10 additions and 4 deletions

View File

@@ -1,6 +1,5 @@
language: python language: python
python: python:
- "2.6"
- "2.7" - "2.7"
- "3.2" - "3.2"
- "3.3" - "3.3"

View File

@@ -11,14 +11,21 @@ setup(
name='imbox', name='imbox',
version=version, version=version,
description="Python IMAP for Human beings", description="Python IMAP for Human beings",
long_description= read('README.md'), long_description=read('README.md'),
keywords='email, IMAP, parsing emails', keywords='email, IMAP, parsing emails',
author='Martin Rusev', author='Martin Rusev',
author_email='martinrusev@live.com', author_email='martinrusev@live.com',
url='https://github.com/martinrusev/imbox', url='https://github.com/martinrusev/imbox',
license='MIT', license='MIT',
packages=['imbox'], packages=['imbox'],
package_dir={'imbox':'imbox'}, package_dir={'imbox': 'imbox'},
zip_safe=False, zip_safe=False,
install_requires=['six',], install_requires=['six'],
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
),
) )