forked from guaix-ucm/numina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (82 loc) · 2.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools >= 61.0.0", "setuptools_scm[toml]>=6.2",
"wheel", "cython >= 3", "numpy>=1.22"]
build-backend = "setuptools.build_meta"
[project]
name = "numina"
dynamic = ["version"]
description = "Astronomy data reduction library"
readme = "README.rst"
requires-python = ">=3.9"
license = {text = "GPL-3.0-or-later"}
authors = [
{name = "Sergio Pascual", email = "[email protected]"},
]
classifiers = [
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Cython",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
'attrs',
'numpy>=1.22',
'astropy',
'scipy',
'PyYaml',
'matplotlib',
'python-dateutil>=2.7.0',
'lmfit',
'scikit-image',
'importlib_resources', # required with python < 3.9
'backports.entry_points_selectable', # required only with python < 3.10a7
]
[project.optional-dependencies]
test = [
"pytest>=6",
"pytest-remotedata",
]
docs = [
"sphinx<7.0.0",
"sphinx_rtd_theme"
]
[project.urls]
Homepage = "https://github.com/guaix-ucm/numina"
Repository = "https://github.com/guaix-ucm/numina.git"
Documentation = "https://numina.readthedocs.io/en/stable/"
[project.scripts]
numina = "numina.user.cli:main"
numina-apply_integer_offsets = "numina.array.wavecalib.apply_integer_offsets:main"
numina-bpm = "numina.array.bpm:main"
numina-check_wlcalib = "numina.array.wavecalib.check_wlcalib:main"
numina-compute_adr_wavelength = "numina.tools.compute_adr_wavelength:main"
numina-extract_2d_slice_from_3d_cube = "numina.tools.extract_2d_slice_from_3d_cube:main"
numina-imath = "numina.tools.imath:main"
numina-measure_slice_xy_offsets_in_3d_cube = "numina.tools.measure_slice_xy_offsets_in_3d_cube:main"
numina-r6-addnf = "numina.tools.r6_addnf:main"
numina-r6-imcombine = "numina.tools.r6_imcombine:main"
numina-r6-insert_keyword = "numina.tools.r6_insert_keyword:main"
numina-r6-replace_image = "numina.tools.r6_replace_image:main"
numina-wavecalib = "numina.array.wavecalib.__main__:main"
numina-ximshow = "numina.array.display.ximshow:main"
numina-ximplotxy = "numina.array.display.ximplotxy:main"
[tool.setuptools_scm]
write_to = "src/numina/_version.py"
# without this, still works, performs autodetection
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
# xfail_strict = true