Skip to content

Commit

Permalink
v4
Browse files Browse the repository at this point in the history
  • Loading branch information
John Major committed Jun 20, 2021
1 parent f6124b5 commit cac2f40
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
requires = [
"setuptools>=42",
"wheel",
"colr",
"docopt"
]
build-backend = "setuptools.build_meta"
6 changes: 4 additions & 2 deletions setup.cfg
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 = iamh2o@gmail.com
description = Generate RGBW values for RGB, HSV, HSL, HEX, HSI values, and move between them all.
Expand All @@ -19,6 +19,8 @@ package_dir =
= src
packages = find:
python_requires = >=3.6

install_requires =
colr
docopt
[options.packages.find]
where = src
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="rgbw_colorspace_converter",
version="0.0.2",
version="0.0.4",
author="John Major",
author_email="iamh2o@gmail.com",
description="Convert between RGB / HSV / HSL / HSI / HEX Color Spaces. And, emit the RGBW code for each.",
Expand All @@ -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"],
)

0 comments on commit cac2f40

Please sign in to comment.