forked from ehpor/hcipy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (74 loc) · 1.79 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
[project]
name = "hcipy"
dynamic = ["version"]
authors = [
{name = "Emiel Por", email = "epor@stsci.edu"},
]
description = "A framework for performing optical propagation simulations, meant for high contrast imaging, in Python."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy"
]
requires-python = ">=3.7"
dependencies = [
"numpy",
"scipy",
"matplotlib>=2.0.0",
"Pillow",
"pyyaml",
"astropy",
"imageio",
"xxhash",
"numexpr",
"asdf",
"importlib_metadata",
"importlib_resources>=1.4 ; python_version<'3.9'",
"tqdm"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"mpmath",
"dill",
"flake8",
]
doc = [
"numpydoc",
"sphinx_rtd_theme",
"nbsphinx",
"jupyter_client",
"ipykernel",
"poppy",
"nbclient",
"nbformat",
"nbconvert",
"sphinx-automodapi",
"tqdm",
"ipywidgets",
]
[project.urls]
homepage = "https://hcipy.org"
documentation = "https://docs.hcipy.org"
repository = "https://github.com/ehpor/hcipy"
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hcipy"]
zip-safe = false
include-package-data = true
[tool.setuptools_scm]
write_to = "hcipy/_version.py"
[project.scripts]
hcipy_tune_fourier = "hcipy.fourier.tuning:_cli"