-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.85 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "waveorder/_version.py"
[project]
name = "waveorder"
description = "Wave-optical simulations and deconvolution of optical properties"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "CZ Biohub SF", email = "[email protected]" }]
maintainers = [
{ name = "Talon Chandler", email = "[email protected]" },
{ name = "Shalin Mehta", email = "[email protected]" },
]
keywords = [
"simulation",
'optics',
'phase',
'scattering',
'polarization',
'label-free',
'permittivity',
"reconstruction-algorithm",
'qlipp',
'mipolscope',
'permittivity-tensor-imaging',
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
]
dependencies = [
"numpy>=1.24",
"matplotlib>=3.1.1",
"scipy>=1.3.0",
"pywavelets>=1.1.1",
"ipywidgets>=7.5.1",
"torch>=2.4.1",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
examples = ["napari[all]", "jupyter"]
[project.urls]
Homepage = "https://github.com/mehta-lab/waveorder"
Repository = "https://github.com/mehta-lab/waveorder"
Issues = "https://github.com/mehta-lab/waveorder/issues"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79