Inline long_desc
This commit is contained in:
parent
3375e1a1c7
commit
8a92787af4
@ -14,8 +14,6 @@ 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
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
|||||||
13
setup.py
13
setup.py
@ -1,6 +1,17 @@
|
|||||||
from setuptools import setup, find_packages
|
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(
|
setup(
|
||||||
name='sqlaload',
|
name='sqlaload',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user