-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
79 lines (73 loc) · 1.97 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "helmlab"
version = "0.10.1"
description = "A data-driven analytical color space trained on 64,000 human color-difference observations"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "Görkem Yıldız"}]
keywords = [
"color", "color-space", "perceptual", "color-difference",
"delta-e", "ciede2000", "oklab", "cielab", "gamut-mapping",
"wcag", "contrast", "design-system", "palette",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
]
[project.urls]
Homepage = "https://helmlab.space"
Documentation = "https://grkmyldz148.github.io/helmlab/"
Repository = "https://github.com/Grkmyldz148/helmlab"
Issues = "https://github.com/Grkmyldz148/helmlab/issues"
[project.optional-dependencies]
datasets = [
"colour-science>=0.4.4",
"colour-datasets>=0.2.4",
"pandas>=2.0",
"openpyxl>=3.1",
]
nn = [
"torch>=2.0",
"FrEIA>=0.2",
]
viz = [
"matplotlib>=3.7",
"rich>=13.0",
"tqdm>=4.65",
]
all = [
"helmlab[datasets,nn,viz]",
]
dev = [
"helmlab[all]",
"pytest>=7.4",
"pytest-cov>=4.1",
"ipykernel>=6.25",
"jupyter>=1.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
helmlab = ["data/*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"