Skip to content

Commit

Permalink
Updated PYPI project description.
Browse files Browse the repository at this point in the history
  • Loading branch information
Infinitode committed Sep 26, 2024
1 parent f5068e4 commit 75b7634
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

An open-source Python library for color generation, conversion, and retrieval of common properties, palettes, and color information.

### Changes in version 1.0.2:
### Changes in version 1.0.3:
- Created new functions for the `analiysis` module. Including `rgb_to_linear`, and other functions to return more color properties, like luminance and vibrancy. We've also added new functions to calculate the color contrast ratio between to colors, and an accessibility function to return if foreground text color should be `light`, or `dark`, based on the background color.
- Created a new `blend_colors` function in our `conversions` module, to blend 2 RGB colors based on a given ratio. Also created new color conversion functions to convert each format into another target format, instead of just `RGB`.
- Added 3 more color schemes to `palettes`. Created new functions under the `ColorPalette` class, for random color generation, and a batch HEX color generation function.
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from setuptools import setup, find_packages

with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='hued',
version='{{VERSION_PLACEHOLDER}}',
author='Infinitode Pty Ltd',
author_email='infinitode.ltd@gmail.com',
description='An open-source Python library for color generation, conversion and retrieval of common properties, palettes, and color information.',
long_description='An open-source Python library for color processing, random color generation, conversion between common types, and retrieval of common color properties, color palettes, and color information.',
description='An open-source Python library for color processing, random color generation, conversion between common types, and retrieval of common color properties, color palettes, and color information.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/infinitode/hued',
packages=find_packages(),
Expand Down

0 comments on commit 75b7634

Please sign in to comment.