This repository was archived by the owner on Feb 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 2.03 KB
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
# [TLP:WHITE] FROM 2025-01-13
# FITS header extractor is a python library to extract the header of FITS.
#
# Author: Moussouni, Yaël (MSc student; yael.moussouni@etu.unistra.fr)
# Institution: Université de Strasbourg, CNRS, Observatoire astronomique
# de Strasbourg, UMR 7550, F-67000 Strasbourg, France
# Date: 2025-01-01
#
# Licence:
# Fits Header Extractor [and Curator With Python]
# Copyright (C) 2025 Yaël Moussouni (yael.moussouni@etu.unistra.fr)
#
# pyproject.toml
# Copyright (C) 2025 Yaël Moussouni (yael.moussouni@etu.unistra.fr)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see https://www.gnu.org/licenses/.
[project]
name = "fits_header_extractor"
version = "1.1.0"
authors = [
{ name="Moussouni, Yaël", email="yael.moussouni@etu.unistra.fr" },
]
description = "FITS files are widely used in astronomy. The content of a FITS file is in two parts: the header and the data. The goal of this package is to explore FITS header."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/Yael-II/Fits-Header-Extractor/"
Issues = "https://github.com/Yael-II/Fits-Header-Extractor/issues/"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}