File: pyproject.toml

package info (click to toggle)
dh-fortran 0.66
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 960 kB
  • sloc: f90: 5,708; python: 1,988; makefile: 118; perl: 112; sh: 7
file content (62 lines) | stat: -rw-r--r-- 1,445 bytes parent folder | download | duplicates (2)
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
[project]
authors = [{ name = "Alastair McKinstry", email = "mckinstry@debian.org" }]
classifiers = [
  "Intended Audience :: Science/Research",
  "Development Status :: 3 - Alpha",
  "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",
  "Programming Language :: Python :: 3.14",
  "Topic :: Scientific/Engineering",
]
description = "Debhelper support for Fortran"
dynamic = ["version"]
license = "GPL-3.0-or-later"
name = "dh-fortran"
readme = "README.md"
requires-python = ">=3.10"

dependencies = ["click" , "magic"]

[project.scripts]
dh_fortran = "dhfortran.main:dh_fortran"
dh_fortran_cmake = "dhfortran.cmake:dh_fortran_cmake"
dh_fortran_pkgconf = "dhfortran.pkgconf:dh_fortran_pkgconf"
dh_fortran_mod = "dhfortran.module:dh_fortran_mod"
dh_fortran_lib = "dhfortran.lib:dh_fortran_lib"

[project.optional-dependencies]
tests = [
  "pytest"
]

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
    "dhfortran/tests/*",
]

[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 = [
 "*"
]
exclude = [
  "build*",
  "docs*"
]