Skip to content

Commit

Permalink
Merge pull request #13 from jmlw/exclude-tests-package
Browse files Browse the repository at this point in the history
Exclude tests package
  • Loading branch information
vrcmarcos authored Jul 24, 2018
2 parents 7bda492 + d3cece5 commit 00e7490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

__version__ = '1.3.2'
__version__ = '1.3.3'

setup(
name='ElasticMock',
Expand All @@ -12,7 +12,7 @@
author='Marcos Cardoso',
author_email='vrcmarcos@gmail.com',
description='Python Elasticsearch Mock for test purposes',
packages=find_packages(),
packages=find_packages(exclude=('tests')),
zip_safe=False,
include_package_data=True,
platforms='any',
Expand Down

0 comments on commit 00e7490

Please sign in to comment.