Files
Matplotlib-Style/pyproject.toml
2025-11-21 16:12:09 +01:00

56 lines
1.8 KiB
TOML

# [TLP:WHITE] FROM 2025-11-21
#
# Author: Moussouni, Yaël (PhD student; yael.moussouni@astro.unistra.fr)
# Institution: Université de Strasbourg, CNRS, Observatoire astronomique
# de Strasbourg, UMR 7550, F-67000 Strasbourg, France
# Date: 2025-11-21
#
# Licence:
# Python Matplotlib Style
# Copyright (C) 2025 Yaël Moussouni (yael.moussouni@astro.unistra.fr)
#
# pyproject.toml
# Copyright (C) 2025 Yaël Moussouni (yael.moussouni@astro.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 = "manchot_plot"
version = "0.0.1"
authors = [
{ name="Moussouni, Yaël", email="yael.moussouni@astro.unistra.fr" },
]
description = "Python Matplotlib Style"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
license = "GPL-3.0-or-later"
license-files = ["COPYING.txt"]
[project.urls]
Homepage = "https://codeberg.org/Yael-II/Matplotlib-Style/"
Issues = "https://codeberg.org/Yael-II/Matplotlib-Style/issues/"
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}