diff --git a/dataclass_wizard/__init__.py b/dataclass_wizard/__init__.py index b0f97d6..cddd4a1 100644 --- a/dataclass_wizard/__init__.py +++ b/dataclass_wizard/__init__.py @@ -2,8 +2,8 @@ Dataclass Wizard ~~~~~~~~~~~~~~~~ -Marshal dataclasses to/from JSON and Python dict objects. Support properties -with initial values. Generate a dataclass schema for JSON input. +Lightning-fast JSON wizardry for Python dataclasses — effortless +serialization with no external tools required! Sample Usage: diff --git a/dataclass_wizard/__version__.py b/dataclass_wizard/__version__.py index d6abffd..a19cced 100644 --- a/dataclass_wizard/__version__.py +++ b/dataclass_wizard/__version__.py @@ -3,9 +3,9 @@ """ __title__ = 'dataclass-wizard' -__description__ = ('Effortlessly marshal dataclasses to/from JSON. ' - 'Leverage field properties with default values. ' - 'Generate dataclass schemas from JSON input.') + +__description__ = ('Lightning-fast JSON wizardry for Python dataclasses — ' + 'effortless serialization with no external tools required!') __url__ = 'https://github.com/rnag/dataclass-wizard' __version__ = '0.32.1' __author__ = 'Ritvik Nag' diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d325d94..c163705 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -65,7 +65,7 @@ about: # (even if the license doesn't require it) using the license_file entry. # See https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html#license-file license_file: LICENSE - summary: Marshal dataclasses to/from JSON. Use field properties with initial values. Construct a dataclass schema with JSON input. + summary: Lightning-fast JSON wizardry for Python dataclasses — effortless serialization with no external tools required! # The remaining entries in this section are optional, but recommended. description: | The dataclass-wizard library provides a set of simple, yet