-
Notifications
You must be signed in to change notification settings - Fork 11
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
1 parent
c9ffc5f
commit 0d42293
Showing
9 changed files
with
55 additions
and
36 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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ColorDetect" | ||
dynamic = ["version"] | ||
description = "Detect and recognize colors in images or video" | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Marvin Kweyu", email = "mkweyu1@gmail.com" } | ||
] | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
keywords = ["ColorDetect", "color recognition","images", "video"] | ||
dependencies = [ | ||
"numpy>=1.18.1", | ||
"matplotlib>=3.2.1", | ||
"opencv-python>=4.2.0.32", | ||
"scikit-learn>=0.22.2.post1", | ||
"webcolors>=1.11.1" | ||
] | ||
requires-python = ">=3.6" | ||
[tool.setuptools] | ||
tests = [ | ||
"tests/", | ||
"*tests\\", | ||
] | ||
|
||
[project.optional-dependencies] | ||
build = ["build", "twine"] | ||
dev = ["black", "flake8","bumpver", "isort", "mypy", "pytest"] | ||
|
||
[project.urls] | ||
repository = "https://github.com/MarvinKweyu/ColorDetect" | ||
documentation = "https://colordetect.readthedocs.io" |
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,3 +1,6 @@ | ||
from . import col_share | ||
from .color_detect import ColorDetect | ||
from .video_color_detect import VideoColor | ||
|
||
|
||
__all__ = ['ColorDetect'] |
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
File renamed without changes.
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
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
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