Skip to content

Plugins subpackage not installed #117

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',

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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