-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.28 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
[project]
name = "rawrefinery"
version = "1.3.4"
description = "A demosaicing, denoising, and refining application for raw images."
authors = [
{ name = "Ryan Mueller"},
]
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = ["python", "Machine Learning", "Camera Raw"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pidng ~=4.0.9",
"pyside6 ~=6.9",
"numpy >=2.3",
"RawHandler ~=0.0.2",
"colour_demosaicing ~=0.2.6",
"blended_tiling >=0.0.1.dev7",
"requests ~=2.32",
"platformdirs ~=4.5",
"tqdm ~=4.67",
"cryptography ~=46.0",
]
[project.optional-dependencies]
torch-legacy = ["torch ~=2.2"]
torch-tested = ["torch ~=2.8"]
[project.urls]
"Homepage" = "https://github.com/rymuelle/RawRefinery"
"Bug Tracker" = "https://github.com/rymuelle/RawRefinery/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["RawRefinery*"]
[project.scripts]
rawrefinery = "RawRefinery.main:main"