Browse Source

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

Simon Conseil 12 years ago
parent
commit
6611a09f06
  1. 7
      docs/changelog.rst
  2. 4
      setup.py

7
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
~~~~~~~~~~~~~

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

Loading…
Cancel
Save