-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (110 loc) · 3.29 KB
/
pyproject.toml
File metadata and controls
123 lines (110 loc) · 3.29 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "luminance-stack-processor"
version = "1.1.8"
description = "Professional HDR processing nodes for ComfyUI using the Debevec Algorithm"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Sumit Chatterjee", email = "sumitchatterjee13@gmail.com" }
]
keywords = [
"comfyui",
"custom-node",
"hdr",
"image-processing",
"debevec-algorithm",
"exposure-fusion",
"computer-vision"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Libraries :: Python Modules"
]
requires-python = ">=3.8"
dependencies = [
"opencv-python>=4.8.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0.0",
"black>=21.0.0",
"flake8>=3.9.0",
"mypy>=0.910"
]
enhanced = [
"opencv-contrib-python>=4.8.0"
]
[project.urls]
"Homepage" = "https://github.com/sumitchatterjee13/Luminance-Stack-Processor"
"Bug Reports" = "https://github.com/sumitchatterjee13/Luminance-Stack-Processor/issues"
"Source" = "https://github.com/sumitchatterjee13/Luminance-Stack-Processor"
"Documentation" = "https://github.com/sumitchatterjee13/Luminance-Stack-Processor/blob/main/README.md"
"Discussions" = "https://github.com/sumitchatterjee13/Luminance-Stack-Processor/discussions"
"Changelog" = "https://github.com/sumitchatterjee13/Luminance-Stack-Processor/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["."]
include = ["luminance_stack_processor*"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.txt", "*.toml"]
# ComfyUI Manager metadata
[tool.comfy]
name = "luminance-stack-processor"
description = "Professional HDR processing nodes for ComfyUI using the Debevec Algorithm"
version = "1.1.8"
author = "Sumit Chatterjee"
license = "MIT"
# Version management
[tool.bumpversion]
current_version = "1.1.8"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
[[tool.bumpversion.files]]
filename = "version.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "README.md"
search = "Version: {current_version}"
replace = "Version: {new_version}"
# Code formatting
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100