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
|
[project]
authors = [{ name = "Alastair McKinstry", email = "mckinstry@debian.org" }]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
description = "Debhelper support for Fortran"
# TODO make dynamic from debversion
# dynamic = ["version"]
version = "0.45"
license = {text = 'GPL-3'}
name = "dh-fortran"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["click" , "magic"]
#[project.urls]
#Documentation = "https://docs.xarray.dev"
#homepage = "https://xarray.dev/"
#issue-tracker = "https://github.com/pydata/xarray/issues"
#source-code = "https://github.com/pydata/xarray"
[project.scripts]
dh_fortran = "dhfortran.cli:dh_fortran"
dh_fortran_cmake = "dhfortran.cmake:dh_fortran_cmake"
dh_fortran_pkgconf = "dhfortran.pkgconf:dh_fortran_pkgconf"
dh_fortran_mod_new = "dhfortran.module:dh_fortran_mod"
dh_fortran_lib_new = "dhfortran.lib:dh_fortran_lib"
[project.optional-dependencies]
tests = [
"pytest"
]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=42", "setuptools-scm>=7"]
[tool.setuptools_scm]
fallback_version = "9999"
[tool.aliases]
test = "pytest"
[tool.setuptools.packages.find]
where = ["."]
include = [
"dhfortran"
]
exclude = [
"build*",
"tests",
"docs*"
]
|