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 * **Query helpers** for simple queries such as all rows in a table or
all distinct values across a set of columns. all distinct values across a set of columns.
****
Examples Examples
-------- --------

View File

@ -1,10 +1,10 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
long_desc = open('README.md', 'r').read() long_desc = open('README.md', 'r').read().split('****', 1)[0]
setup( setup(
name='sqlaload', name='sqlaload',
version='0.2', version='0.2.1',
description="Utility functions for using SQLAlchemy in ETL.", description="Utility functions for using SQLAlchemy in ETL.",
long_description=long_desc, long_description=long_desc,
classifiers=[ classifiers=[