Skip to content

Commit

Permalink
Fixed #12 pip 1.1 install error
Browse files Browse the repository at this point in the history
  • Loading branch information
vinta committed Nov 4, 2013
1 parent 1fe3323 commit e93f910
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Expand Up @@ -3,8 +3,6 @@
import os
import sys

from pip.req import parse_requirements

try:
from setuptools import setup
except ImportError:
Expand All @@ -19,7 +17,8 @@

license = open('LICENSE').read()

install_requires = [str(item.req) for item in parse_requirements('requirements.txt')]
requirements_lines = [line.strip() for line in open('requirements.txt').readlines()]
install_requires = list(filter(None, requirements_lines))

packages = [
'haul',
Expand All @@ -31,7 +30,7 @@

setup(
name='haul',
version='1.3.1',
version='1.3.2',
description='An Extensible Image Crawler',
long_description=long_description,
keywords='haul web image content scraper parser crawler',
Expand Down

0 comments on commit e93f910

Please sign in to comment.