forked from PyFR/PyFR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (74 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
85 lines (74 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfr"
dynamic = ["version"]
description = "Flux Reconstruction in Python"
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.12"
authors = [
{name = "PyFR development team", email = "info@pyfr.org"}
]
keywords = ["Math"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
]
dependencies = [
"gimmik >= 3.2.1",
"h5py >= 2.10",
"mako >= 1.0.0",
"mpi4py >= 4.0.0",
"numpy >= 2.4.2",
"platformdirs >= 2.2.0",
"pytools >= 2016.2.1",
"rtree >= 1.4.1",
]
[project.optional-dependencies]
metal = ["pyobjc-framework-Metal >= 12.0"]
[project.urls]
Homepage = "https://www.pyfr.org/"
[project.scripts]
pyfr = "pyfr.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "pyfr._version.__version__"}
[tool.setuptools.packages.find]
include = ["pyfr*"]
[tool.setuptools.package-data]
"pyfr.backends.base.kernels" = ["*.mako"]
"pyfr.backends.cuda.kernels" = ["*.mako"]
"pyfr.backends.hip.kernels" = ["*.mako"]
"pyfr.backends.metal.kernels" = ["*.mako"]
"pyfr.backends.opencl.kernels" = ["*.mako"]
"pyfr.backends.openmp.kernels" = ["*.mako"]
"pyfr.integrators.explicit.kernels" = ["*.mako"]
"pyfr.integrators.implicit.kernels" = ["*.mako"]
"pyfr.plugins.kernels" = ["*.mako"]
"pyfr.quadrules" = [
"hex/*.txt",
"line/*.txt",
"pri/*.txt",
"pyr/*.txt",
"quad/*.txt",
"tet/*.txt",
"tri/*.txt",
]
"pyfr.solvers.baseadvec.kernels" = ["*.mako"]
"pyfr.solvers.baseadvecdiff.kernels" = ["*.mako"]
"pyfr.solvers.euler.kernels" = ["*.mako"]
"pyfr.solvers.euler.kernels.bcs" = ["*.mako"]
"pyfr.solvers.euler.kernels.rsolvers" = ["*.mako"]
"pyfr.solvers.navstokes.kernels" = ["*.mako"]
"pyfr.solvers.navstokes.kernels.bcs" = ["*.mako"]
"pyfr.tests" = ["*.npz"]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
ignore = ["E741", "E402"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]