-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (69 loc) · 1.96 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
72
73
[build-system]
requires = ["setuptools", "wheel", "poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "paos"
version = "1.2.7"
description = "PAOS, the Physical Optics Simulator, is a fast, modern, and reliable Python package for Physical Optics studies. It implements Physical Optics Propagation in Fresnel approximation and paraxial ray tracing to analyze complex waveform propagation through both generic and off-axes optical systems."
license = "BSD-3-Clause"
authors = [
"Andrea Bocchieri <[email protected]>",
"Lorenzo V. Mugnai",
"Enzo Pascale",
]
readme = "README.md"
homepage = "https://github.com/arielmission-space/PAOS"
repository = "https://github.com/arielmission-space/PAOS.git"
documentation = "https://paos.readthedocs.io/en/latest/"
keywords = [
"python",
"open-source",
"psf",
"gui",
"optics",
"wavefront",
"ray-tracing",
"fresnel",
"optics-simulation",
"paos",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.22.2"
photutils = "^1.3.0"
scipy = "^1.8.0"
matplotlib = "^3.5.1"
h5py = "^3.6.0"
joblib = "^1.1.0"
decorator = "^5.1.1"
tqdm = "^4.62.3"
ipykernel = "^6.9.0"
sympy = "^1.12"
scikit-image = "*"
loguru = "^0.7.2"
shiny = "^1.2.1"
shinywidgets = "*"
faicons = "*"
orjson = "^3.7.7"
marimo = "^0.10.13"
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinxcontrib-napoleon = "*"
sphinxcontrib-jsmath = "*"
sphinx-markdown-tables = "^0.0.17"
jupyter-sphinx = "^0.5.3"
sphinx-rtd-theme = "^3.0.1"
[tool.poetry.scripts]
paos = "paos.paos:main"
paos_gui = "paos.gui.gui:main"