From 0f9f919c206711b767029d1aa59ae979bbb69d51 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Sat, 4 Jan 2014 19:19:18 +0100 Subject: Make at least unittests running with Python 2.7 Add support for Travis-CI Fixes #283 --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index a29fd4e..bec4529 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +from __future__ import absolute_import, print_function, unicode_literals from distutils.core import setup, Command import unittest @@ -51,4 +53,5 @@ setup(name='gg_scrapper', classifiers=classifiers, cmdclass={ 'test': RunTests, - }) + }, + requires=['beautifulsoup4', 'PyYAML']) -- cgit