From b1dc19e63c63b7f99200e1f1b261e08c2c925b80 Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Tue, 29 Sep 2015 09:31:14 +0200 Subject: [PATCH] Code review: 263410044: Changes to setup.py for docs. --- config/dpkg/changelog | 2 +- plaso/__init__.py | 2 +- setup.py | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) 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.