-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.29 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.0,<=75", "setuptools_scm>8"]
build-backend = "setuptools.build_meta"
[project]
name = "array_api_strict"
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = ["numpy"]
license = {file = "LICENSE"}
authors = [
{name = "Consortium for Python Data API Standards"}
]
description = "A strict, minimal implementation of the Python array API standard."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://data-apis.org/array-api-strict/"
Repository = "https://github.com/data-apis/array-api-strict"
[tool.setuptools_scm]
version_file = "array_api_strict/_version.py"
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
strict_bytes = true
local_partial_types = true
[[tool.mypy.overrides]]
module = ["*.tests.*"]
disallow_untyped_defs = false