-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (61 loc) · 2.21 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "harmonics-radius-index"
description = "Harmonics' Radius Index (HRI95) is a full-reference image quality index based harmonic structures of the images for the comparison super-resolution models."
keywords = ["super-resolution", "frequency-analysis", "image-quality-metrics"]
version = "2024.3.0"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">= 3.10"
authors = [{ name = "Gökhan Koçmarlı", email = "gokhan.kocmarli@gmail.com" }]
maintainers = [
{ name = "Gökhan Koçmarlı", email = "gokhan.kocmarli@gmail.com" },
]
[project.urls]
Homepage = "https://github.com/electricalgorithm/harmonics-radius-index"
Repository = "https://github.com/electricalgorithm/harmonics-radius-index.git"
Issues = "https://github.com/electricalgorithm/harmonics-radius-index/issues"
[tool.flake8]
exclude = [".git", "__pycache__", "*venv", "build", "dist", "venv*"]
max-line-length = 100
count = true
[tool.pylint.main]
persistent = true
extension-pkg-whitelist = "cv2"
ignore = [".git", "__pycache__", "*venv", "build", "dist", "venv*"]
fail-under = '8.5'
ignore-patterns = ["^\\.#"]
jobs = 5
limit-inference-results = 100
load-plugins = [
"pylint.extensions.check_elif",
"pylint.extensions.bad_builtin",
"pylint.extensions.docparams",
"pylint.extensions.for_any_all",
"pylint.extensions.set_membership",
"pylint.extensions.code_style",
"pylint.extensions.overlapping_exceptions",
"pylint.extensions.typing",
"pylint.extensions.redefined_variable_type",
"pylint.extensions.comparison_placement",
"pylint.extensions.mccabe",
]
py-version = "3.10"
suggestion-mode = true
[tool.pylint.FORMAT]
ignore-long-lines = "^\\s*(# )?<?https?://\\S+>?$"
[tool.pylint."messages control"]
disable = [
"too-few-public-methods",
"arguments-differ",
"import-error",
"too-many-locals",
]