From 52ddb0b9ffa5284be668da088b7600b6ff64a2f9 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 15 Nov 2022 07:53:38 -0800 Subject: [PATCH] Rename utility functions to library --- docs/conf.py | 2 +- docs/index.rst | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 62d5ab1..8d49b81 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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", ) ] diff --git a/docs/index.rst b/docs/index.rst index 6793255..2bca2c8 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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. diff --git a/setup.py b/setup.py index 2cf7af2..faa822b 100644 --- a/setup.py +++ b/setup.py @@ -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",