Closed
Description
When installing latest git (using e.g. pip install .
or python setup.py install
), the plugins directory is not installed. This is easily fixed using the following patch:
$ git diff
diff --git a/setup.py b/setup.py
index 07e81ee..b059a0f 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ setup(
author_email='contact@saimon.org',
description='Simple static gallery generator',
long_description=README + '\n' + CHANGELOG,
- packages=['sigal'],
+ packages=['sigal', 'sigal.plugins'],
zip_safe=False,
include_package_data=True,
platforms='any',
Metadata
Metadata
Assignees
Labels
No labels