-
Notifications
You must be signed in to change notification settings - Fork 6
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
John Major
committed
Jun 20, 2021
1 parent
f6124b5
commit cac2f40
Showing
3 changed files
with
8 additions
and
3 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 |
---|---|---|
|
@@ -2,5 +2,7 @@ | |
requires = [ | ||
"setuptools>=42", | ||
"wheel", | ||
"colr", | ||
"docopt" | ||
] | ||
build-backend = "setuptools.build_meta" |
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,6 +1,6 @@ | ||
[metadata] | ||
name = rgbw_colorspace_converter | ||
version = 0.0.2 | ||
version = 0.0.4 | ||
author = John Major | ||
author_email = [email protected] | ||
description = Generate RGBW values for RGB, HSV, HSL, HEX, HSI values, and move between them all. | ||
|
@@ -19,6 +19,8 @@ package_dir = | |
= src | ||
packages = find: | ||
python_requires = >=3.6 | ||
|
||
install_requires = | ||
colr | ||
docopt | ||
[options.packages.find] | ||
where = src |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="rgbw_colorspace_converter", | ||
version="0.0.2", | ||
version="0.0.4", | ||
author="John Major", | ||
author_email="[email protected]", | ||
description="Convert between RGB / HSV / HSL / HSI / HEX Color Spaces. And, emit the RGBW code for each.", | ||
|
@@ -24,4 +24,5 @@ | |
packages=setuptools.find_packages(where="src"), | ||
scripts=["bin/run_color_module_RGB_HSV_HEX_demo.py"], | ||
python_requires=">=3.6", | ||
install_requires=["colr", "docopt"], | ||
) |