-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 882 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 882 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyHoloscope"
version = "1.1.3"
description = "Python package for holographic microscopy."
readme = "README.md"
authors = [{ name = "Michael Hughes", email = "m.r.hughes@kent.ac.uk" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["holographic", "microscopy", "microscopy", "holography", "inline holography", "off-axis holography"]
dependencies = [
"matplotlib>=3.3.4",
"numba>=0.55.1",
"numpy >= 1.22",
"opencv_python>=4.5",
"Pillow>=9",
"scipy>=1.7",
"scikit-image"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/MikeHughesKent/PyHoloscope/"