Skip to content

Commit

Permalink
Merge pull request #66 from uploadcare/fix-setup
Browse files Browse the repository at this point in the history
fix six requirements
  • Loading branch information
dmitry-mukhin committed Jun 9, 2014
2 parents c3b26a3 + 6ceb898 commit d04e9ee
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,24 @@

PY_VERSION = sys.version_info[0], sys.version_info[1]

requirements = ['requests>=1.0', 'python-dateutil>=2.1', 'six>=1.2.0']
requirements = [
'requests>=1.0',
'python-dateutil>=2.1',
'six>=1.2.0, <1.4',
]

if PY_VERSION == (2, 6):
requirements.append('argparse')


setup(
name='pyuploadcare',
version='1.2.4',
version='1.2.5',
description='Python library for Uploadcare.com',
long_description=(
open('README.rst').read() + '\n\n' + open('HISTORY.rst').read()
),
author='Uploadcare Ltd',
author='Uploadcare LLC',
author_email='[email protected]',
url='https://github.com/uploadcare/pyuploadcare',
packages=['pyuploadcare', 'pyuploadcare.dj'],
Expand Down

0 comments on commit d04e9ee

Please sign in to comment.