-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (85 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
97 lines (85 loc) · 2.38 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
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "op_engine"
version = "0.1.1"
description = "Multiphysics integration engine for ODEs and PDEs using implicit-explicit operator splitting"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11,<3.15"
license = { file = "LICENSE" }
authors = [
{ name = "Joshua Macdonald", email = "jmacdo16@jh.edu" },
{ name = "Carl Pearson", email = "cap1024@unc.edu" },
{ name = "Timothy Willard", email = "twillard@unc.edu" },
]
keywords = ["multiphysics", "ODE", "PDE", "IMEX", "operator-splitting", "solver"]
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Repository = "https://github.com/ACCIDDA/op_engine"
Documentation = "https://accidda.github.io/op_engine/"
Issues = "https://github.com/ACCIDDA/op_engine/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mypy>=1.18.2",
"matplotlib>=3.8",
"pytest>=8.4.2",
"ruff>=0.13.3",
"mike>=2.1.3",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.1",
"mkdocs-autorefs>=1.4.3",
"scipy-stubs>=1.17.1.3",
]
[tool.pytest.ini_options]
testpaths = [
"docs/",
"src/op_engine/",
"tests/",
]
markers = [
"flepimop2: (deprecated) marker previously used for op_engine.flepimop2 integration tests; move these to flepimop2-op_engine",
]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 72
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812",
"CPY001",
"D203",
"D212",
"PLR2004",
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*" = ["INP001", "S101"]
"scripts/**/*" = [
"N999", # Invalid module name
"T201", # `print` found
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
exclude = ["examples/"]
[tool.hatch.build.targets.wheel]
packages = ["src/op_engine"]
include = ["src/op_engine/py.typed"]
[tool.uv]
required-version = ">=0.4.17"