From e3f8e330864ec858ca472fdc5c33c372b958114e Mon Sep 17 00:00:00 2001 From: Aron Barreira Bordin Date: Wed, 17 Aug 2016 18:08:18 -0300 Subject: [PATCH] added find packages (#12) --- setup.py | 4 ++-- tox.ini | 6 ------ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index afee67e..915e87b 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -from setuptools import setup +from setuptools import setup, find_packages setup( name='scrapy-streaming', @@ -7,7 +7,7 @@ url='https://github.com/scrapy-plugins/scrapy-streaming', description='Develop Spiders using any Programming Language', author='Scrapy developers', - packages=['scrapy_streaming'], + packages=find_packages(exclude=('tests', 'tests.*')), requires=['scrapy'], entry_points={ diff --git a/tox.ini b/tox.ini index 04f8c48..d72d3df 100644 --- a/tox.ini +++ b/tox.ini @@ -17,11 +17,5 @@ commands = pip install -e . py.test --doctest-modules --cov=scrapy_streaming {posargs:scrapy_streaming tests} -[testenv:py33] -basepython = python3.3 - -[testenv:py34] -basepython = python3.4 - [testenv:py35] basepython = python3.5