Rename utility functions to library

This commit is contained in:
Simon Willison 2022-11-15 07:53:38 -08:00 committed by GitHub
commit 52ddb0b9ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -187,7 +187,7 @@ texinfo_documents = [
"sqlite-utils documentation",
author,
"sqlite-utils",
"Python utility functions for manipulating SQLite databases",
"Python library for manipulating SQLite databases",
"Miscellaneous",
)
]

View file

@ -15,7 +15,7 @@
.. |discord| image:: https://img.shields.io/discord/823971286308356157?label=discord
:target: https://discord.gg/Ass7bCAMDw
*CLI tool and Python utility functions for manipulating SQLite databases*
*CLI tool and Python library for manipulating SQLite databases*
This library and command-line utility helps create SQLite databases from an existing collection of data.

View file

@ -15,7 +15,7 @@ def get_long_description():
setup(
name="sqlite-utils",
description="CLI tool and Python utility functions for manipulating SQLite databases",
description="CLI tool and Python library for manipulating SQLite databases",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Simon Willison",