forked from albertopadovan/resolvent4py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.5 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
[build-system]
# Specifies the build system to use
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "resolvent4py"
version = "1.0.1"
description = """\
A parallel Python-based library for analysis, model reduction and \
control of large-scale linear systems.\
"""
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"linear systems", "parallel computing", "MPI", "PETSc", "SLEPc",
"resolvent analysis", "harmonic resolvent analysis",
"model reduction", "control",
]
authors = [
{ name = "Alberto Padovan", email = "alberto.padovan.94@gmail.com" },
{ name = "Vishal Anantharaman", email = "vanantha@caltech.edu" },
{ name = "Clancy Rowley", email = "cwrowley@princeton.edu" },
]
requires-python = ">=3.10"
readme = { file = "README.md", content-type = "text/markdown" }
dependencies = ["numpy", "scipy", "matplotlib"]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-gallery",
"sphinxcontrib-bibtex",
]
[project.urls]
Homepage = "https://github.com/albertopadovan/resolvent4py"
Documentation = "https://albertopadovan.github.io/resolvent4py/"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 79
target-version = "py39"
lint.extend-select = ["I", "UP", "B"]
lint.ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"local: marks tests as local development tests",
]
python_files = ["test_*.py"]
addopts = "-ra -q"