From f248a811076bdf5facfbf75de49e52fef0d6315a Mon Sep 17 00:00:00 2001 From: Skami18 Date: Sat, 29 Oct 2011 18:04:59 +0200 Subject: [PATCH] Plugins are now installed by setuptools --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 18db914f..071d3523 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( author_email = 'alexis@notmyidea.org', description = "A tool to generate a static blog, with restructured text (or markdown) input files.", long_description=open('README.rst').read(), - packages = ['pelican'], + packages = ['pelican', 'pelican.plugins'], include_package_data = True, install_requires = requires, scripts = ['bin/pelican', 'tools/pelican-themes'],