diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4264c4c..600a68a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,12 +3,16 @@ Changelog for breadability ========================== +0.1.20 (April 13th 2014) +------------------------- +- Don't include tests in sdist builds. + 0.1.19 (April 13th 2014) ----------------------- +-------------------------- - Replace charade with chardet for easier packaging. 0.1.18 (April 6th 2014) ----------------------- +------------------------ - Improved decoding of the page into Unicode. 0.1.17 (Jan 22nd 2014) diff --git a/setup.py b/setup.py index 8e1e64e..f41b868 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,13 @@ import sys -from os.path import abspath, dirname, join -from setuptools import setup, find_packages +from os.path import ( + abspath, + dirname, + join, +) +from setuptools import setup -VERSION = "0.1.19" +VERSION = "0.1.20" VERSION_SUFFIX = "%d.%d" % sys.version_info[:2] CURRENT_DIRECTORY = abspath(dirname(__file__)) @@ -78,7 +82,7 @@ setup( "Topic :: Text Processing :: Filters", "Topic :: Text Processing :: Markup :: HTML", ], - packages=find_packages(), + packages=['breadability'], include_package_data=True, zip_safe=False, install_requires=install_requires,