-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
55 lines (51 loc) · 1.47 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
[build-system]
requires = [
"setuptools>=67",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
zip-safe = false
script-files = [
"tutorial/tuto_01_acquisition_operators.py",
"tutorial/tuto_02_pseudoinverse_linear.py",
"tutorial/tuto_03_pseudoinverse_cnn_linear.py",
"tutorial/tuto_04_train_pseudoinverse_cnn_linear.py",
"tutorial/tuto_05_acquisition_split_measurements.py",
"tutorial/tuto_06_dcnet_split_measurements.py"
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
[project]
name = "spyrit"
version = "2.3.3"
dynamic = ["readme"]
authors = [{name = "Nicolas Ducros", email = "Nicolas.Ducros@insa-lyon.fr"}]
description = "Toolbox for deep image reconstruction"
license = {file = "LICENSE.md"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"torch",
"torchvision",
"Pillow",
"PyWavelets",
"wget",
"sympy",
"imageio",
"astropy",
]
requires-python = ">=3.6"