More high-tech engineering in sqla

This commit is contained in:
Friedrich Lindenberg 2013-03-30 22:43:50 +01:00
parent 3feaeff87a
commit abd0dc6372
2 changed files with 3 additions and 2 deletions

View File

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

View File

@ -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=[