Skip to content

Commit

Permalink
Code review: 263410044: Changes to setup.py for docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Dec 31, 2015
1 parent 42c04aa commit b1dc19e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/dpkg/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ python-plaso (1.3.1-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline <[email protected]> Thu, 24 Sep 2015 17:58:39 +0200
-- Log2Timeline <[email protected]> Tue, 29 Sep 2015 09:31:13 +0200
2 changes: 1 addition & 1 deletion plaso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__version__ = '1.3.1'

VERSION_DEV = True
VERSION_DATE = '20150924'
VERSION_DATE = '20150929'


def GetVersion():
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit b1dc19e

Please sign in to comment.