-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
|
||
|
||
__author__ = "Rosita Fu" | ||
__version__ = "1.0.1" | ||
__version__ = "1.0.2" | ||
__license__ = "MIT" | ||
__email__ = "[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
from setuptools import setup, find_packages | ||
|
||
long_description = "Chromatose is a package for storing and visualizing palettes, constructing new ones via interpolation or extraction.\n\nThe stored palettes are for personal record, featuring diverging and continuous palettes.\nVisualizations include swatches, pies, points, lines, scatters, and heatmaps.\nThere are a multitude of beautiful gradients in packages like bokeh and colorcet that are, for the most part, static. The interpolation scheme here can be used to create entirely new ones given only a few intermediary points. The underlying algorithm uses a combination of linear and polynomial splines in customizable color space metrics RGB, HSL, or HSV. Heatmaps are a great way to visualize the results.\n To extract palettes from images, chromatose employs k-means clustering and median-cut algorithms." | ||
long_description = "Chromatose is a package for storing and visualizing palettes, constructing new ones via interpolation or extraction. The stored palettes are for personal record, featuring diverging and continuous palettes. Visualizations include swatches, pies, points, lines, scatters, and heatmaps. There are a multitude of beautiful gradients in packages like bokeh and colorcet that are, for the most part, static. The interpolation scheme here can be used to create entirely new ones given only a few intermediary points. The underlying algorithm uses a combination of linear and polynomial splines in customizable color space metrics RGB, HSL, or HSV. Heatmaps are a great way to visualize the results. To extract palettes from images, chromatose employs k-means clustering and median-cut algorithms." | ||
|
||
setup( | ||
name="chromatose", | ||
version="1.0.1", | ||
version="1.0.2", | ||
description="Personal palette collection, palette visualizer, interpolator, and extractor", | ||
long_description=long_description, | ||
url="https://github.com/atisor73/chromatose", | ||
download_url="https://github.com/atisor73/chromatose/archive/v1.0.1.tar.gz", | ||
download_url="https://github.com/atisor73/chromatose/archive/v1.0.2.tar.gz", | ||
license="MIT", | ||
author='Rosita Fu', | ||
author_email='[email protected]', | ||
|