-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
33 lines (29 loc) · 1001 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm>8"]
build-backend = "setuptools.build_meta"
[project]
name = "array_api_strict"
dynamic = ["version"]
requires-python = ">= 3.9"
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.9",
"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"