diff --git a/config/dpkg/changelog b/config/dpkg/changelog index 5217798bc1..9d72016d6f 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -2,4 +2,4 @@ python-plaso (1.3.1-1) unstable; urgency=low * Auto-generated - -- Log2Timeline Thu, 24 Sep 2015 17:58:39 +0200 + -- Log2Timeline Tue, 29 Sep 2015 09:31:13 +0200 diff --git a/plaso/__init__.py b/plaso/__init__.py index 90a7f948aa..f0872c7bc4 100644 --- a/plaso/__init__.py +++ b/plaso/__init__.py @@ -3,7 +3,7 @@ __version__ = '1.3.1' VERSION_DEV = True -VERSION_DATE = '20150924' +VERSION_DATE = '20150929' def GetVersion(): diff --git a/setup.py b/setup.py index 21383db3e7..a23823b312 100755 --- a/setup.py +++ b/setup.py @@ -98,13 +98,15 @@ def run(self): 'Operating System :: OS Independent', 'Programming Language :: Python', ], - packages=find_packages('.', exclude=[u'tests', u'tests.*', u'tools']), + packages=find_packages('.', exclude=[ + 'docs', 'tests', 'tests.*', 'tools', 'utils']), package_dir={ 'plaso': 'plaso', }, data_files=[ ('share/plaso', glob.glob(os.path.join('data', '*'))), - ('share/doc/plaso', glob.glob(os.path.join('docs', '*'))), + ('share/doc/plaso', [ + u'AUTHORS', u'ACKNOWLEDGEMENTS', u'LICENSE', u'README']), ], # TODO: this is disabled for now since setup.py will actually try # to install the depencies directly from pypi.