-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 1.82 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
[build-system]
requires = [
"meson>=1.3.2",
"meson-python>=0.18.0",
"wheel",
"cmake",
"numpy>=2.4"
]
build-backend = "mesonpy"
[project]
name = "numpy_quaddtype"
description = "Quad (128-bit) float dtype for numpy"
version = "1.0.0"
readme = 'README.md'
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [{name = "Swayam Singh", email = "singhswayam008@gmail.com"}]
maintainers = [{name = "NumPy Developers", email = "numpy-discussion@python.org"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Free Threading",
"Typing :: Typed",
]
requires-python = ">=3.11.0"
dependencies = [
"numpy>=2.4"
]
[project.optional-dependencies]
test = [
"pytest",
"mpmath",
"pytest-run-parallel"
]
docs = [
"sphinx",
"pydata-sphinx-theme",
"myst-parser",
"sphinx-design",
"sphinx-copybutton",
"sphinxcontrib-katex",
]
[project.urls]
Repository = "https://github.com/numpy/numpy-quaddtype"
Documentation = "https://numpy.org/numpy-quaddtype/"
Issues = "https://github.com/numpy/numpy-quaddtype/issues"
[tool.pyright]
include = ["src/numpy_quaddtype/*.pyi"]
typeCheckingMode = "strict"
enableTypeIgnoreComments = false
reportImplicitOverride = true
reportUnnecessaryTypeIgnoreComment = true
[tool.mypy]
strict = true
strict_equality_for_none = true
exclude = ["build", "src/csrc", "subprojects", "tests"]
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
warn_unreachable = false
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = ["subprojects", "build", ".mesonpy*"]