Skip to content

Commit

Permalink
Exclude cache folders from setup
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Jul 21, 2017
1 parent 2d07b16 commit 2a6cf20
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 @@ -29,7 +29,7 @@
with open('requirements.txt') as f:
requirements = [line for line in f.read().split('\n') if len(line.strip())]

exclude = {'exclude': ['external*', 'pdb_cache', 'docs']}
exclude = {'exclude': ['external*', 'docs', '*cache']}
packages = [BASE_PACKAGE + '.' + x for x in find_packages(os.path.join(base_path, BASE_PACKAGE), **exclude)]
if BASE_PACKAGE not in packages:
packages.append(BASE_PACKAGE)
Expand Down

0 comments on commit 2a6cf20

Please sign in to comment.