Skip to content

Commit 52aed73

Browse files
authored
Fix package selection in setup.py (#758)
1 parent b0d5bfb commit 52aed73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def find_stubs(package):
3131
setup(
3232
name='pynamodb',
3333
version=__import__('pynamodb').__version__,
34-
packages=find_packages(exclude=('tests',)),
34+
packages=find_packages(exclude=('tests', 'tests.integration',)),
3535
url='http://jlafon.io/pynamodb.html',
3636
author='Jharrod LaFon',
3737
author_email='jlafon@eyesopen.com',

0 commit comments

Comments
 (0)