From 8a92787af4663a04823927b708f4c131b2215b72 Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Sun, 31 Mar 2013 01:54:55 +0100 Subject: [PATCH] Inline long_desc --- README.md | 2 -- setup.py | 13 ++++++++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57408fe..2828ef5 100644 --- a/README.md +++ b/README.md @@ -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 -------- diff --git a/setup.py b/setup.py index c7757ee..2d0cd5b 100644 --- a/setup.py +++ b/setup.py @@ -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',