Inline long_desc

This commit is contained in:
Friedrich Lindenberg 2013-03-31 01:54:55 +01:00
parent 3375e1a1c7
commit 8a92787af4
2 changed files with 12 additions and 3 deletions

View File

@ -14,8 +14,6 @@ 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,6 +1,17 @@
from setuptools import setup, find_packages
long_desc = open('README.md', 'r').read().split('****', 1)[0]
long_desc = """A collection of wrappers and functions to make SQLAlchemy core easier
to use in ETL applications. SQLAlchemy is used only for database
abstraction and not as an ORM, allowing users to write extraction
scripts that can work with multiple database backends. Functions
include:
* **Automatic schema**. If a column is written that does not
exist on the table, it will be created automatically.
* **Upserts**. Records are either created or updated, depdending on
whether an existing version can be found.
* **Query helpers** for simple queries such as all rows in a table or
all distinct values across a set of columns."""
setup(
name='sqlaload',