-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
83 lines (74 loc) · 2.06 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deeplens-core"
version = "1.5.2"
description = "DeepLens: differentiable optical lens simulator for end-to-end cameras."
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "Xinge Yang", email = "xinge.yang@kaust.edu.sa"}
]
requires-python = ">=3.12"
keywords = [
"optics",
"lens design",
"differentiable rendering",
"computational photography",
"ray tracing",
"pytorch",
"optical simulation",
"PSF",
"diffractive optics",
"end-to-end optimization",
"differentiable optics",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Image Processing",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
]
dependencies = [
"torch",
"torchvision",
"opencv-python>=4.8.0",
"matplotlib>=3.7.0",
"scikit-image>=0.20.0",
"transformers>=4.30.0",
"lpips>=0.1.4",
"einops>=0.7.0",
"tqdm>=4.65.0",
]
[project.optional-dependencies]
dev = [
"jupyter>=1.0.0",
"notebook>=7.0.0",
"ipywidgets>=8.0.0",
]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.24",
"pymdown-extensions>=10.0",
]
[project.urls]
Homepage = "https://github.com/singer-yang/DeepLens"
Repository = "https://github.com/singer-yang/DeepLens"
Documentation = "https://vccimaging.github.io/DeepLens/"
Issues = "https://github.com/singer-yang/DeepLens/issues"
Changelog = "https://github.com/singer-yang/DeepLens/releases"
[tool.setuptools.package-data]
deeplens = ["material/*.AGF", "material/*.json"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.setuptools.packages.find]
where = ["."]