From abd0dc6372893758fcefb1b0b0454f1856ff0eb2 Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Sat, 30 Mar 2013 22:43:50 +0100 Subject: [PATCH] More high-tech engineering in sqla --- README.md | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0880369..57408fe 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ include: * **Query helpers** for simple queries such as all rows in a table or all distinct values across a set of columns. +**** Examples -------- diff --git a/setup.py b/setup.py index 96b2dc5..1205c14 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,10 @@ from setuptools import setup, find_packages -long_desc = open('README.md', 'r').read() +long_desc = open('README.md', 'r').read().split('****', 1)[0] setup( name='sqlaload', - version='0.2', + version='0.2.1', description="Utility functions for using SQLAlchemy in ETL.", long_description=long_desc, classifiers=[