Skip to content

Commit

Permalink
Don't add lib as a package.
Browse files Browse the repository at this point in the history
  • Loading branch information
SnijderC committed Nov 30, 2017
1 parent c35bd5c commit d09c76b
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 @@ -15,8 +15,8 @@ def all_packages():
it. This is necessary because, for example, oscrypto includes sub-packages
as well.
"""
exclude = ('dev', 'tests')
packages = find_packages()
exclude = ('dev', 'tests', 'lib')
packages = find_packages(exclude=exclude)
# Make a list of lists of packages (i.e. each invocation of find_packages
# returns a list).
libs = [find_packages(path, exclude=exclude) for path in find_lib_paths()]
Expand Down

0 comments on commit d09c76b

Please sign in to comment.