forked from deepinv/deepinv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (74 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (74 loc) · 1.79 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
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]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "deepinv"
authors = [{name="Julian Tachella", email="tachellajulian@gmail.com"}]
license = {text = "BSD 3-Clause"}
description = "Pytorch library for solving inverse problems with deep learning"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
version = "0.1.1"
dependencies = [
"numpy",
"matplotlib",
"hdf5storage",
"tqdm",
"torch",
"torchvision",
"einops",
"wandb",
]
[tool.setuptools]
platforms = ["any"]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://deepinv.github.io/"
Source = "https://github.com/deepinv/deepinv"
Tracker = "https://github.com/deepinv/deepinv/issues"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"coverage",
]
doc = [
"sphinx",
"sphinx_gallery",
"sphinx_rtd_theme",
"sphinxemoji",
"sphinx_exec_code"
]
# optional dependencies for specific denoisers
denoisers = [
"bm3d",
"timm",
"PyWavelets",
"ptwt",
"FrEIA"
]
#####################################################################
# Pytest configuration and coverage reporting
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"deepinv/tests",
]
[tool.coverage.run]
branch = true
# omit = examples/*,src/db/versions/* # define paths to omit
[tool.coverage.report]
show_missing = true
skip_covered = true