forked from guaix-ucm/fridadrp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.6 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
[build-system]
requires = ["setuptools >= 64", "wheel", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "fridadrp"
dynamic = ["version"]
description = "FRIDA Data Reduction Pipeline"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "GPL-3.0-or-later"}
authors = [
{name = "Nicolás Cardiel", email = "[email protected]"},
{name = "Sergio Pascual", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3.8",
"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 = [
"astropy",
"joblib",
"matplotlib",
"numina >= 0.32",
"numpy >= 1.20,<2",
"pooch",
"shapely",
"scipy",
"tqdm",
]
[project.optional-dependencies]
test = [
"pytest>=6",
"pytest-remotedata",
]
docs = [
"sphinx",
"numpydoc",
"sphinx_rtd_theme"
]
[project.urls]
Homepage = "https://github.com/guaix-ucm/fridadrp"
Repository = "https://github.com/guaix-ucm/fridadrp.git"
[project.entry-points."numina.pipeline.1"]
FRIDA = "fridadrp.loader:drp_load"
[project.scripts]
fridadrp-ifu_simulator = "fridadrp.tools.frida_ifu_simulator:main"
# pyproject.toml
[tool.setuptools_scm]
write_to = "src/fridadrp/_version.py"