-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/color_calibration"]
[project]
name = "color-calibration"
dynamic = ["version"]
description = "Tools for calibrating color in images"
authors = [
{ name = "David Carlyn", email = "davidecarlyn@gmail.com" },
{ name = "Matthew J. Thompson", email = "thompson.m.j@outlook.com"}
]
readme = "README.md"
license = { text = "MIT" }
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"opencv-python",
"tqdm"
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[project.urls]
"Source" = "https://github.com/Imageomics/color-calibration"
"Issues" = "https://github.com/Imageomics/color-calibration/issues"
[tool.hatch.build]
include = [
"README.md",
"LICENSE"
]
[tool.hatch.version]
path = "src/color_calibration/__init__.py"