Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugins subpackage not installed #117

Closed
pitrou opened this issue Oct 5, 2014 · 1 comment
Closed

Plugins subpackage not installed #117

pitrou opened this issue Oct 5, 2014 · 1 comment

Comments

@pitrou
Copy link
Contributor

pitrou commented Oct 5, 2014

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',
@saimn
Copy link
Owner

saimn commented Oct 7, 2014

Argh python packaging ... Thanks for the notice !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants