Include plugins in the distributed package (ref #117).
This commit is contained in:
@@ -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
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
|
||||
4
setup.py
4
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',
|
||||
|
||||
Reference in New Issue
Block a user