summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-07-11 19:35:45 +1200
committerLars Wirzenius <liw@liw.fi>2010-07-11 19:35:45 +1200
commitbc90c09055a9a83e574c8f0bf9d2fa2736070c56 (patch)
tree06dcca7a3b82f8fc36f829ac5fc6945833d4752d
parent996eaaf6a590096ecd65493cbf35d8c78b2d82aa (diff)
downloadobnam-version_0_12.tar.gz
Add obnamlib.plugins to packages to install in setup.py.version_0_12
This incidentally also fixes the missing-plugins bug in the Debian package.
-rw-r--r--debian/changelog1
-rw-r--r--setup.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 8f9b5fc9..79dc6e93 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ obnam (0.12) squeeze; urgency=low
* New upstream release.
- speed optimizations, resulting in incompatible on-disk data structures
- preliminary SFTP support
+ - includes plugins in .deb (via fix in setup.py)
* debian/control: Bumped Standards-Version. No other changed needed.
* debian/control: Bumped required version of python-btree.
diff --git a/setup.py b/setup.py
index b337418a..2b06fadd 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ setup(name='obnam',
author_email='liw@liw.fi',
url='http://braawi.org/obnam/',
scripts=['obnam'],
- packages=['obnamlib'],
+ packages=['obnamlib', 'obnamlib.plugins'],
ext_modules=[Extension('_obnam', sources=['_obnammodule.c'])],
data_files=[('share/man/man1', glob.glob('*.1'))],
)