-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.77 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "deep-unfolding"
description = "Deep unfolding of iterative methods to solve linear equations"
version = "0.2.0"
authors = [
{ name = "Salah Berra", email = "[email protected]" },
{ name = "Nennouche Mohamed", email = "[email protected]" },
{ name = "Nuno Fachada", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"iterative methods",
"deep unfolding",
"linear equations solver" ]
license = { text = "GPLv3" }
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
dependencies = [ "numpy >= 1.26", "torch >= 2.3" ]
[project.urls]
"Homepage" = "https://github.com/Salahberra2022/deep-unfolding"
"Bug Tracker" = "https://github.com/Salahberra2022/deep-unfolding/issues"
"Documentation" = "https://Salahberra2022.github.io/deep-unfolding/"
[project.optional-dependencies]
dev = [
"pdoc >= 14.5",
"coverage >= 7.2",
"mypy >= 1.5",
"pytest >= 7.0",
"pytest-mypy >= 0.10.3",
"pytest-cov >= 3.0.0" ]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--mypy"
norecursedirs = [
"hooks",
"*.egg",
".eggs",
"dist",
"build",
"docs",
"Tutorials",
".tox",
".git",
"__pycache__" ]
testpaths = [
"src/deep_unfolding",
"tests" ]
[tool.mypy]
python_version = "3.9"
warn_unused_ignores = true