-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (56 loc) · 1.35 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
[project]
name = "mullerpy"
version = "0.1.1"
description = "A Python implementation of Muller's method."
readme = "README.md"
authors = [{name = "Fabian Gittins", email = "[email protected]"}]
requires-python = ">=3.8"
dependencies = []
license = {file = "LICENSE.md"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
source = "https://github.com/fgittins/mullerpy"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.14.1",
"numpy>=1.24.4",
"pytest>=8.3.5",
"pytest-cov>=5.0.0",
"ruff>=0.11.11",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mullerpy"]
[tool.mypy]
strict = true
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812",
"ICN001",
"N806",
"PLR0913",
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
"tests/**" = [
"D",
"INP",
"PT",
]