-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
73 lines (68 loc) · 1.2 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zfista"
version = "0.0.3"
description = "A globally convergent fast iterative shrinkage-thresholding algorithm with a new momentum factor for single and multi-objective convex optimization"
readme = "README.md"
authors = [
{name = "Hiroki Tanabe", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"jaxopt",
"pymoo",
"scipy",
"typing_extensions",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinxcontrib-katex",
"sphinx_rtd_theme",
]
bench = [
"joblib",
"matplotlib",
"pandas",
"SciencePlots",
"tqdm"
]
examples = [
"zfista[bench]",
"jupyter",
"PyWavelets",
"scikit-image",
]
[tool.mypy]
strict = true
exclude = ['build', 'venv']
[[tool.mypy.overrides]]
module = [
"scipy.*",
"pymoo.*",
"jaxopt.*",
"mpl_toolkits.mplot3d.*",
"joblib.*",
"scienceplots.*",
]
ignore_missing_imports = true
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"C",
"I",
"B",
"UP",
"FA",
"TCH",
]
ignore = [
"E111",
"E114",
"E117",
]