Skip to content

Commit

Permalink
Excluded utils from packaging #219
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Jun 18, 2017
1 parent 3efd542 commit 4587ebd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ def _make_spec_file(self):
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=find_packages('.', exclude=[u'tests', u'tests.*', u'tools']),
packages=find_packages('.', exclude=[
'tests', 'tests.*', 'tools', 'utils']),
package_dir={'artifacts': 'artifacts'},
data_files=[
('share/artifacts', glob.glob(os.path.join('data', '*'))),
Expand Down

0 comments on commit 4587ebd

Please sign in to comment.