Skip to content

Commit

Permalink
Changes to setup.py (log2timeline#2005)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored and Onager committed Jul 5, 2018
1 parent 45a13c2 commit a9f9f8e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ def _make_spec_file(self):
'Operating System :: OS Independent',
'Programming Language :: Python',
],
zip_safe=False,
packages=find_packages('.', exclude=[
'docs', 'tests', 'tests.*', 'tools', 'utils']),
package_dir={
Expand All @@ -204,12 +203,15 @@ def _make_spec_file(self):
include_package_data=True,
package_data={
'plaso.parsers': ['*.yaml'],
'plaso.parsers.olecf_plugins': ['*.yaml'],
'plaso.parsers.winreg_plugins': ['*.yaml'],
},
zip_safe=False,
scripts=glob.glob(os.path.join('tools', '*.py')),
data_files=[
('share/plaso', glob.glob(os.path.join('data', '*'))),
('share/plaso', glob.glob(
os.path.join('data', '*'))),
('share/doc/plaso', [
'AUTHORS', 'ACKNOWLEDGEMENTS', 'LICENSE', 'README']),
'ACKNOWLEDGEMENTS', 'AUTHORS', 'LICENSE', 'README']),
],
)

0 comments on commit a9f9f8e

Please sign in to comment.