diff --git a/README.md b/README.md index 2575540..567e095 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Overview -A collection of Python utility modules for common tasks including file operations, data format conversions, database interactions, AWS services, and more. +A collection of Python utility modules for common tasks including file operations, data format conversions, database interactions, and more. Feedback welcome via [GitHub issues](https://github.com/brian-ruf/ruf-common-python/issues). While I will try to address issues in a timely manner, I only intend to invest in feature requests that align with my project work. Feel free to contribute backward compatible enhancements. diff --git a/docs/README.md b/docs/README.md index e6a90c0..4a2d6e9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -12,7 +12,6 @@ pip install ruf-common | Module | Description | |--------|-------------| -| [aws](aws.md) | AWS S3 bucket operations (connect, read, write, check) | | [country_code_converter](country_code_converter.md) | Convert country names to ISO 3166-1 alpha-2 codes | | [data](data.md) | XML, JSON, YAML parsing, XPath queries, format detection | | [database](database.md) | Database class with SQLite3 support, file caching | diff --git a/pyproject.toml b/pyproject.toml index 904b804..4676a6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ruf-common" -version = "2.0.0" +version = "2.0.1" description = "Functions common to several of Brian's Python projects." requires-python = ">=3.9" license = "MIT" diff --git a/ruf_common/__init__.py b/ruf_common/__init__.py index 7098a29..acf60f9 100644 --- a/ruf_common/__init__.py +++ b/ruf_common/__init__.py @@ -16,7 +16,6 @@ "lfs", "helper", "network", - "aws", "logging", "stats", "country_code_converter",