-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
86 lines (77 loc) · 1.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
]
[project]
dependencies = [
"meson==1.5.0",
"ninja",
"numexpr==2.10.1",
"numpy==1.26.0",
"opencv-python",
"pillow",
"scipy",
]
name = "proximal"
version = "0.2.0"
[project.optional-dependencies]
examples = [
"matplotlib",
]
test = [
"cvxpy",
"pytest",
"pytest-cov",
"ruff",
]
[project.urls]
Repository = "http://github.com/comp-imaging/ProxImaL/"
[tool.ruff]
exclude = [
"proximal/halide/subprojects/",
]
line-length = 127
target-version = "py310"
[tool.ruff.lint]
select = [
"C90",
"E9",
"E713",
"E721",
"F7",
"F63",
"F82",
]
[tool.ruff.lint.mccabe]
max-complexity = 30
[tool.setuptools]
packages = [
"proximal",
"proximal.algorithms",
"proximal.halide",
"proximal.lin_ops",
"proximal.prox_fns",
"proximal.tests",
"proximal.tests.data",
"proximal.utils",
]
[tool.setuptools.package-data]
"proximal.halide" = [
"meson.build",
"src/*.cpp",
"src/algorithm/*",
"src/core/*",
"src/external/*",
"src/fft/*",
"src/user-problem/*",
"subprojects/halide.wrap",
"subprojects/packagefiles/halide/meson.build",
"subprojects/pybind11.wrap",
"subprojects/range-v3.wrap",
]
"proximal.tests.data" = [
"angela.jpg",
]
[tool.setuptools.package-dir]
proximal = "proximal"