forked from 0x64746b/python-cpbd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cpbd-py312"
version = "1.0.3"
description = "Calculate the sharpness of an image with the CPBD metric (Python 3.12+ compatible)"
readme = "README.md"
authors = [
{name = "nawta", email = "nawta@g.ecc.u-tokyo.ac.jp"}
]
license = {text = "Proprietary"}
keywords = [
"sharpness",
"metric",
"blur",
"cumulative probability",
"no-reference",
"objective",
"perceptual",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = [
"matplotlib>=3.5.0",
"numpy>=1.21.0",
"scikit-image>=0.19.0",
"scipy>=1.7.0",
"imageio>=2.9.0",
]
[project.urls]
Homepage = "https://github.com/nawta/python-cpbd-py312"
[project.optional-dependencies]
dev = [
"pandas>=1.3.0",
"pytest>=6.0.0",
"scikit-learn>=1.0.0",
"tox>=3.24.0",
]
[tool.setuptools]
packages = ["cpbd"]
license-files = ["LICENSE.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]