-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
97 lines (84 loc) · 2.46 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
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "goodman_pipeline"
dynamic = ["version"]
description = "Pipeline for reducing Goodman HTS data."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = [
"soar",
"pipelines",
"astronomy",
"images",
"spectroscopy"
]
authors = [
{name = "Simón Torres", email = "simon.torres@noirlab.edu"},
{name = "Bruno Quint", email = "bruno.quint@noirlab.edu"},
{name = "César Briceño", email = "cesar.briceno@noirlab.edu"},
{name = "David Sanmartim", email = "dsanmartim@lsst.org"}
]
maintainers = [
{name = "Simón Torres", email = "simon.torres@noirlab.edu"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'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',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: Other',
'Operating System :: MacOS :: MacOS X',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = [
"astropy",
"astroplan",
"ccdproc",
"cython",
"matplotlib",
"numpy",
"packaging",
"pandas",
"requests",
"scipy",
]
[project.optional-dependencies]
test = [
"mock"
]
[project.urls]
"Homepage" = "https://soardocs.readthedocs.io/projects/goodman-pipeline/en/latest/"
"Bug Reports" = "https://github.com/soar-telescope/goodman_pipeline/issues"
"Source" = "https://github.com/soar-telescope/goodman_pipeline"
[project.scripts]
redccd = "goodman_pipeline.scripts.redccd:__main__"
redspec = "goodman_pipeline.scripts.redspec:__main__"
[tool.setuptools]
[tool.setuptools.packages.find]
where = ["goodman_pipeline"]
[tool.setuptools.package-data]
goodman_pipeline = [
'data/params/dcr.par',
'data/params/*.json_output',
'data/ref_comp/*fits',
'data/dcr_source/README.md',
'data/dcr_source/dcr/*',
'data/test_data/master_flat/*',
'data/test_data/wcs_data/*'
]
[tool.setuptools_scm]
version_file = "goodman_pipeline/version.py"