-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
96 lines (87 loc) · 1.98 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
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "array-api-compat"
dynamic = ["version"]
description = "A wrapper around NumPy and other array libraries to make them compatible with the Array API standard"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{name = "Consortium for Python Data API Standards"}]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.optional-dependencies]
cupy = ["cupy"]
dask = ["dask"]
jax = ["jax"]
numpy = ["numpy"]
pytorch = ["torch"]
sparse = ["sparse>=0.15.1"]
docs = [
"furo",
"linkify-it-py",
"myst-parser",
"sphinx",
"sphinx-copybutton",
"sphinx-autobuild",
]
dev = [
"array-api-strict",
"dask[array]",
"jax[cpu]",
"numpy",
"pytest",
"torch",
"sparse>=0.15.1",
"ndonnx; python_version>=\"3.10\""
]
[project.urls]
homepage = "https://data-apis.org/array-api-compat/"
repository = "https://github.com/data-apis/array-api-compat/"
[tool.setuptools.dynamic]
version = {attr = "array_api_compat.__version__"}
[tool.setuptools.packages.find]
include = ["array_api_compat*"]
namespaces = false
[toolint]
preview = true
select = [
# Defaults
"E4", "E7", "E9", "F",
# Undefined export
"F822",
# Useless import alias
"PLC0414"
]
ignore = [
# Module import not at top of file
"E402",
# Do not use bare `except`
"E722"
]
[tool.ruff.lint]
preview = true
select = [
# Defaults
"E4", "E7", "E9", "F",
# Undefined export
"F822",
# Useless import alias
"PLC0414"
]
ignore = [
# Module import not at top of file
"E402",
# Do not use bare `except`
"E722"
]