Skip to content

Commit

Permalink
Merge pull request #294 from grahamc/patch-1
Browse files Browse the repository at this point in the history
Pass `tests_require` list of packages
  • Loading branch information
gabrielfalcao committed May 26, 2016
2 parents 37c7729 + e5552e6 commit 7f1f67d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def parse_requirements(path):

install_requires, dependency_links = \
parse_requirements('requirements.txt')
tests_requires, tests_dependency_links = \
parse_requirements('development.txt')


setup(
Expand All @@ -95,7 +97,7 @@ def parse_requirements(path):
url='http://github.com/gabrielfalcao/httpretty',
zip_safe=False,
packages=find_packages(exclude=['*tests*']),
tests_require=parse_requirements('development.txt'),
tests_require=tests_requires,
install_requires=install_requires,
dependency_links=dependency_links,
license='MIT',
Expand Down

0 comments on commit 7f1f67d

Please sign in to comment.