diff --git a/HISTORY.rst b/HISTORY.rst index 06d8257..9f86fe2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History ======= +0.8.1 (2010-09-28) +------------------ +* Packaging Fix + + 0.8.0 (2010-09-25) ------------------ * New format plugin system! diff --git a/setup.py b/setup.py index 0c95cb4..13ad1e8 100644 --- a/setup.py +++ b/setup.py @@ -17,14 +17,14 @@ if sys.argv[-1] == "publish": setup( name='tablib', - version='0.8.0', + version='0.8.1', description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), author='Kenneth Reitz', author_email='me@kennethreitz.com', url='http://github.com/kennethreitz/tablib', - packages=['tablib'], + packages=['tablib'm 'tablib.formats'], install_requires=['xlwt', 'simplejson', 'PyYAML'], license='MIT', classifiers=( diff --git a/tablib/core.py b/tablib/core.py index cdaf0d5..ddb9769 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -7,8 +7,8 @@ from tablib.formats import FORMATS as formats __title__ = 'tablib' -__version__ = '0.8.0' -__build__ = 0x000800 +__version__ = '0.8.1' +__build__ = 0x000801 __author__ = 'Kenneth Reitz' __license__ = 'MIT' __copyright__ = 'Copyright 2010 Kenneth Reitz'