Skip to content

Commit

Permalink
Merge pull request seme0021#18 from seme0021/fix-dependencies
Browse files Browse the repository at this point in the history
Fix setup.py install_requires list
  • Loading branch information
jonafato committed Jan 4, 2018
2 parents a368b36 + 49659cb commit 54079e8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def read(*paths):
keywords=['zillow', 'api', 'real estate', 'python'],
description='A Python wrapper around the Zillow API',
packages=find_packages(exclude=['tests*']),
install_requires=['future', 'requests', 'requests-oauthlib'],
install_requires=[
'requests',
'xmltodict',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand All @@ -39,4 +42,4 @@ def read(*paths):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)
)

0 comments on commit 54079e8

Please sign in to comment.