forked from navarete/goodman_photometry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
81 lines (69 loc) · 2 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "goodman_photometry"
dynamic = ["version"]
description = "Pipeline for reducing Goodman HTS data."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = [
"soar",
"pipelines",
"astronomy",
"images",
"astrometry",
"photometry"
]
authors = [
{name = "Felipe Navarete", email = "[email protected] "},
]
maintainers = [
{name = "Felipe Navarete", email = "[email protected] "}
]
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",
"statsmodels",
"astroquery"
]
[project.urls]
"Homepage" = "https://github.com/navarete/goodman_photometry"
"Bug Reports" = "https://github.com/navarete/goodman_photometry/issues"
"Source" = "https://github.com/navarete/goodman_photometry"
[project.scripts]
redastrometry = "goodman_photometry.astrometry:goodman_astrometry"
redphotometry = "goodman_photometry.photometry:goodman_photometry"
[tool.setuptools]
packages = ["goodman_photometry"]
[tool.setuptools_scm]
version_file = "goodman_photometry/version.py"