Include plugins in the distributed package (ref #117).

This commit is contained in:
Simon Conseil
2014-10-07 23:57:52 +02:00
parent ca12226383
commit 90876fbdc8
2 changed files with 9 additions and 2 deletions

View File

@@ -7,6 +7,13 @@ Version 0.9.dev
Released on 2014-xx-xx.
Version 0.8.1
~~~~~~~~~~~~~
Released on 2014-10-07.
- Include plugins in the distributed package.
Version 0.8.0
~~~~~~~~~~~~~

View File

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