forked from guaix-ucm/megaradrp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (65 loc) · 1.8 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
[build-system]
requires = ["setuptools >= 45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "megaradrp"
dynamic = ["version"]
description = "MEGARA Data Reduction Pipeline"
readme = "README.rst"
requires-python = ">=3.9"
license = {text = "GPL-3.0-or-later"}
authors = [
{name = "Sergio Pascual", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"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",
]
dependencies = [
"numpy >= 1.20,<2",
"astropy",
"scipy >= 1.12",
"matplotlib",
"numina >= 0.33",
"jsonschema",
"scikit-image",
"packaging",
"attrs"
]
[project.optional-dependencies]
test = [
"pytest>=6",
"pytest-remotedata",
]
docs = [
"sphinx",
"numpydoc",
"sphinx_rtd_theme"
]
DB = [
"sqlalchemy",
"numinadb"
]
[project.urls]
Homepage = "https://github.com/guaix-ucm/megaradrp"
Repository = "https://github.com/guaix-ucm/megaradrp.git"
Documentation = "https://megaradrp.readthedocs.io/en/stable/"
[project.scripts]
megaradrp-overplot_traces = "megaradrp.tools.overplot_traces:main"
megaradrp-heal_traces = "megaradrp.tools.heal_traces:main"
megaradrp-cube = "megaradrp.processing.cube:main"
[project.entry-points."numina.pipeline.1"]
MEGARA = "megaradrp.loader:load_drp"
[project.entry-points."numinadb.extra.1"]
MEGARA = "megaradrp.db"
# pyproject.toml
[tool.setuptools_scm]
write_to = "src/megaradrp/_version.py"