-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 812 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[project]
name = "ColorNameFinder"
version = "0.0.1"
authors = [
{ name="Robert Collins", email="roberto.tomas.cuentas@gmail.com" },
]
description = "An artist's color name search tool - given a csv of colors, find the best matching color when considering tint, shade, or tone"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/robbiemu/ColorNameFinder"
"Bug Tracker" = "https://github.com/robbiemu/ColorNameFinder/issues"
[build-system]
requires = ["setuptools>=61.0", "scikit-learn>=1.2.1","scikit-image>=0.19.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["assets", "src"]