From 6611a09f06ff3d6bc165c2f877d760c22a14076d Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Tue, 7 Oct 2014 23:57:52 +0200 Subject: [PATCH] Include plugins in the distributed package (ref #117). --- docs/changelog.rst | 7 +++++++ setup.py | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 6c8d323..319066a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ Changelog =========== +Version 0.8.1 +~~~~~~~~~~~~~ + +Released on 2014-10-07. + +- Include plugins in the distributed package. + Version 0.8.0 ~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 07e81ee..c3e9b8d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # -*- coding:utf-8 -*- import os -from setuptools import setup +from setuptools import setup, find_packages with open('README.rst') as f: README = f.read() @@ -25,7 +25,7 @@ setup( author_email='contact@saimon.org', description='Simple static gallery generator', long_description=README + '\n' + CHANGELOG, - packages=['sigal'], + packages=find_packages(exclude=['tests*']), zip_safe=False, include_package_data=True, platforms='any',