Update to 0.1.20, remove tests from build

pull/29/head
Richard Harding 10 years ago
parent 5e8d9b46be
commit 6d747a312a

@ -3,12 +3,16 @@
Changelog for breadability Changelog for breadability
========================== ==========================
0.1.20 (April 13th 2014)
-------------------------
- Don't include tests in sdist builds.
0.1.19 (April 13th 2014) 0.1.19 (April 13th 2014)
---------------------- --------------------------
- Replace charade with chardet for easier packaging. - Replace charade with chardet for easier packaging.
0.1.18 (April 6th 2014) 0.1.18 (April 6th 2014)
---------------------- ------------------------
- Improved decoding of the page into Unicode. - Improved decoding of the page into Unicode.
0.1.17 (Jan 22nd 2014) 0.1.17 (Jan 22nd 2014)

@ -1,9 +1,13 @@
import sys import sys
from os.path import abspath, dirname, join from os.path import (
from setuptools import setup, find_packages abspath,
dirname,
join,
)
from setuptools import setup
VERSION = "0.1.19" VERSION = "0.1.20"
VERSION_SUFFIX = "%d.%d" % sys.version_info[:2] VERSION_SUFFIX = "%d.%d" % sys.version_info[:2]
CURRENT_DIRECTORY = abspath(dirname(__file__)) CURRENT_DIRECTORY = abspath(dirname(__file__))
@ -78,7 +82,7 @@ setup(
"Topic :: Text Processing :: Filters", "Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML", "Topic :: Text Processing :: Markup :: HTML",
], ],
packages=find_packages(), packages=['breadability'],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=install_requires, install_requires=install_requires,

Loading…
Cancel
Save