-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
44 lines (42 loc) · 1.63 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "psf-generator"
version = "0.0.1"
dependencies = [
"matplotlib>=3.6.1",
"numpy>=1.23.4",
"scipy>=1.9.1",
"torch>=2.0.0",
"zernikepy>=0.0.5",
"scikit-image"
]
requires-python = ">=3.8"
authors = [
{name = "Yan Liu", email = "yan.liu@epfl.ch"},
{name = "Vasiliki Stergiopoulou", email = "vasiliki.stergiopoulou@epfl.ch"},
{name = "Jonathan Dong", email = "jonathan.dong@epfl.ch"},
{name = "Jonathan Chuah", email = "jonathan.chuahwenjie@epfl.ch"},
{name = "Daniel Sage", email = "daniel.sage@epfl.ch"}
]
maintainers = [
{name = "Yan Liu", email = "yan.liu@epfl.ch"},
{name = "Vasiliki Stergiopoulou", email = "vasiliki.stergiopoulou@epfl.ch"},
{name = "Jonathan Dong", email = "jonathan.dong@epfl.ch"}
]
description = "PSF Generator: a PyTorch-based library to simulate point spread functions for microscopy."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["point-spread-function", "pytorch", "deep learning", "fluorescence microscopy",
"imaging", "optical system", "psf engineering", "light propagation"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
]
[project.urls]
Homepage = "https://github.com/Biomedical-Imaging-Group/psf_generator"
Documentation = "https://psf-generator.readthedocs.io/"
Repository = "https://github.com/Biomedical-Imaging-Group/psf_generator.git"
"Bug Tracker" = "https://github.com/Biomedical-Imaging-Group/psf_generator/issues"
Changelog = "https://github.com/Biomedical-Imaging-Group/psf_generator/CHANGELOG.md"