-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 1.14 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "opendenoise"
version = "0.1.0"
description = "AI denoising for RAW photography. Outputs DNG files for non-destructive editing in darktable."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Caleb Bornman" },
]
keywords = ["denoising", "raw", "photography", "dng", "darktable", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"rawpy",
"tifffile",
"imagecodecs",
"spandrel",
"pyyaml",
]
[project.optional-dependencies]
# PyTorch must be installed separately — the install command depends on
# whether you have NVIDIA (CUDA), AMD (ROCm), or CPU-only.
# See README.md for instructions.
[project.scripts]
opendenoise = "opendenoise.cli:main"
[project.urls]
Repository = "https://github.com/chbornman/OpenDenoise"
[tool.setuptools.packages.find]
include = ["opendenoise*"]