Skip to content

Plugins subpackage not installed #117

Closed
@pitrou

Description

@pitrou

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions