-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.9 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "goodman_focus"
dynamic = ["version"]
description = "Finds best focus for Goodman HTS based on a series of images obtained with different focus values"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = [
"soar",
"pipelines",
"astronomy",
"images",
"spectroscopy",
"focus"
]
authors = [
{name = "Simón Torres", email = "[email protected]"}
]
maintainers = [
{name = "Simón Torres", 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",
"ccdproc",
"matplotlib",
"numpy",
"packaging",
"pandas",
"scipy",
]
[project.urls]
"Homepage" = "https://soardocs.readthedocs.io/projects/goodmanfocus/en/latest/"
"Bug Reports" = "https://github.com/soar-telescope/goodman_focus/issues"
"Source" = "https://github.com/soar-telescope/goodman_focus"
[project.scripts]
goodman-focus = "goodman_focus:run_goodman_focus"
[tool.setuptools]
packages = ["goodman_focus"]
[tool.setuptools_scm]
version_file = "goodman_focus/version.py"