Skip to content

Commit

Permalink
Merge branch 'fix-setuppy' into develop
Browse files Browse the repository at this point in the history
* fix-setuppy:
  Fix find_packages() to not include tests packages
  • Loading branch information
jamesls committed Nov 2, 2013
2 parents 4990632 + bbc6de6 commit 4ca0a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
author_email='garnaat@amazon.com',
url='https://github.com/boto/botocore',
scripts=[],
packages=find_packages(),
packages=find_packages(exclude=['tests*']),
package_data={'botocore': ['data/*.json', 'data/aws/*.json'],
'botocore.vendored.requests': ['*.pem']},
package_dir={'botocore': 'botocore'},
Expand Down

0 comments on commit 4ca0a94

Please sign in to comment.